Q. where is the below variables stored ?
- volatile, static, register
Answer Posted / c p
local variables-->stack memory
global variable-->global or static memory
register variable-->CPU registers
static variable-->global and static memory
(stack memory+(globel memory or static memory)+heap memory)=DATA MEMORY
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain what are run-time errors?
In a byte, what is the maximum decimal number that you can accommodate?
Write a program for Overriding.
What are the properties of union in c?
What are the types of c language?
How we can insert comments in a c program?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Dont ansi function prototypes render lint obsolete?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Is there a way to compare two structure variables?
Where are the auto variables stored?
what are enumerations in C
Can a variable be both constant and volatile?
In C language what is a 'dangling pointer'?