Where are c variables stored in memory?
Answer / Chandan Kumar Chakravorty
In C, a variable is a named location used to store data during the execution of a program. Here's an example: int x = 5; This declares a variable 'x' and initializes it with the value 5.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to implement call back functions ?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is null in c?
What is the auto keyword good for?
If the static variable is declared as global, will it be same as extern?
write a program for odd numbers?
What are the 4 data types?
why ordinary variable store the later value not the initial
What is strcmp in c?
What is function pointer c?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
Where are the auto variables stored?