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 context in c?
What is the process to generate random numbers in c programming language?
What are the different types of linkage exist in c?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
List some applications of c programming language?
What are comments and how do you insert it in a C program?
Define macros.
What is typedf?
diff between exptected result and requirement?
Does * p ++ increment p or what it points to?
What is the size of array float a(10)?
What is function definition in c?
What does c mean in basketball?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...