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 |
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
I want tcs placement papers of 2004-2009 , its urgent
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
Dont ansi function prototypes render lint obsolete?
what are the various memory handling mechanisms in C ?
What is anagram in c?
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is the purpose of the statement: strcat (S2, S1)?
#define f(x) main() { printf("\n%d",f(2+2)); }
Is null equal to 0 in sql?
How can you determine the maximum value that a numeric variable can hold?