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
Explain built-in function?
What are the restrictions of a modulus operator?
Why main is not a keyword in c?
What is the hardest programming language?
what is the format specifier for printing a pointer value?
What is the difference between functions getch() and getche()?
What kind of structure is a house?
Is sizeof a keyword in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Is c language still used?
Why c is procedure oriented?
How many types of arrays are there in c?
What is #line in c?
Which header file is essential for using strcmp function?
What is the modulus operator?