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 |
who will call your main function in c under linux?
Why isnt there a numbered, multi-level break statement to break out
Why use int main instead of void main?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
please give me some tips for the placement in the TCS.
int *a[5] refers to
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the difference between macros and inline functions?
wat are the two methods for swapping two numbers without using temp variable??
What is wrong with this program statement? void = 10;
What is the best way of making my program efficient?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....