2
votes
7answers
163 views
size of a datatype in c
Is size of a datatype hardware architecture dependent or compiler dependent?
I want to know what factors really influence in determining the size of a datatype?
2
votes
5answers
125 views
can size of array be determined at run time in c?
As I know, an array needs to have a specific size before compiling time in c.
I wonder why this code still works?
int s;
printf("enter the array size: ");
scanf("%d",&s);
i …
0
votes
1answer
21 views
PVRTC compression increasing the file sizes of PNG
Hi,
For iPhone game development, I switched from PNG format to PVRTC format for the sake of performance. But PVRTC compression is creating files that are much bigger than the PNG …
2
votes
3answers
41 views
Get Size of HTTP Response in Java
Hi,
I would like to know how much data was sent in response to a certain http-request.
What I currently do is this:
HttpURLConnection con = (HttpURLConnection) feedurl.openCon …
0
votes
5answers
112 views
How to calculate the memory size of a program?
Lets say I have a c program where I use only stack variables, no dynamic variables (malloc, ...)
Is it possible to calculate how much memory my program will take during run time? …
0
votes
5answers
31 views
Image size reduction in PHP
In cases such as this error:
Fatal error: Out of memory (allocated
31981568) (tried to allocate 3264
bytes)
Can I use the GD lib to reduce its file size first before gett …
0
votes
7answers
122 views
Variable sized matrix in C
Is there any way to create a variable sized doubly-scripted array in C (not C++, just C)? I know that to create a variable sized singly-scripted array, you just use a pointer, e.g. …
0
votes
2answers
24 views
How to resize a HTML Canvas object after creating using createElement()?
I'm creating a HTML Canvas object using this javascript code:
var Canvas = document.createElement("canvas");
Canvas.style.width = "500px";
and then i'm drawing text upon it.
W …
4
votes
2answers
122 views
scala mailbox size limit
I can see that scala can solve the Producer-Consumer problem using actors. There is a couple of examples on the web but what is worrying me is the unlimited growth of an actor's ma …
13
votes
7answers
487 views
C programming : How does free know how much to free?
I asked my prof this, he couldn't answer me :/ In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory …
2
votes
4answers
109 views
Unwanted border around JPanel
I'm creating a form with a JPanel inside it for some graphics and some buttons for controlling the thing. For some reason I have to specify the JPanel to be 10 px less wide and 30 …
0
votes
1answer
32 views
Making the silverlight TreeView control less bulky?
Hi, I'm very new to Silverlight. I've downloaded VS 2010 so that I can mess around with silverlight in a more graphical way and without having to pay a ton of money for Expression …
0
votes
4answers
96 views
mysql Varchar size limit
Hi All,
Can anyone provide me a quick input on how mysql treat varchar data type size.
For Example: - If I have a column in table with field with Varchar(15) and if I try to inse …
0
votes
2answers
47 views
Change button text without changing button size
Hello,
I'm using a borderLayout to arrange my components in a JFrame and a Box(BoxLayout.X_AXIS) to put buttons next to each other. But it creates two problems:
I want the butto …
0
votes
1answer
24 views
what does the mySQL Length parameter do for different types?
I've used MySQL (via PHPMyAdmin) a lot before but never really understood half of it. I'm assuming that for varchar, length is the maximum length of a string that can go there. But …
