How does variable declaration affect memory?
Answer / glibwaresoftsolutions
The type of data contained in that variable determines how much memory has to be allocated or reserved.
If a variable is designated as "integer type," for instance, 32 bits of memory storage will be set aside specifically for that variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is a structural principle?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
LOGIC OF Bodmas?
what does exit() do?
Explain what is operator promotion?
What is a const pointer in c?
Why use int main instead of void main?
What is malloc calloc and realloc in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
What is structure packing in c?