What are static variables, and where are they stored?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Static variables retain their value across multiple function calls. They are stored in the data segment of memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Static variables retain their value across multiple function calls. They are stored in the data segment of memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I read/write structures from/to data files?
What is the mean of function?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is ambagious result in C? explain with an example.
hi send me sample aptitude papers of cts?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
what is a constant pointer in C
What is the use of the #include directive?
program to find middle element of linklist?
Write a small C program to determine whether a machine's type is little-endian or big-endian.
How are variables declared in c?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.