Where local variables are stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a far pointer?What is the utility?
Differentiate fundamental data types and derived data types in C.
A C E G H +B D F A I ------------ E F G H D
What is a void pointer? When is a void pointer used?
What is the difference between abs() and fabs() functions?
can we declare a variable in different scopes with different data types? answer in detail
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
what is the definition of storage classes?
How can I set an array's size at run time?
What are structures and unions? State differencves between them.
What's the difference between constant char *p and char * constant p?
What does %c mean in c?