what are the stoge class in C and tel the scope and life time
of it?
Answer Posted / anudeep gongadi
1.automatic: the scope is within the function
2.extern: if variable is declared with extern, then that
variable is there in another program.and it can be used in
current program.
3.static: they are initialised only once.
4.register: limited memory is reserved for registers.
for faster access off data and computations, we mae use of
registers.
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Explain what is a program flowchart and explain how does it help in writing a program?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What does c mean in standard form?
Why can’t constant values be used to define an array’s initial size?
what is the function of pragma directive in c?
What are identifiers and keywords in c?
How can I trap or ignore keyboard interrupts like control-c?
Which is the best website to learn c programming?
How can I read a binary data file properly?
What is difference between Structure and Unions?
Can you think of a logic behind the game minesweeper.
What is action and transformation in spark?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
write a program to rearrange the array such way that all even elements should come first and next come odd
What does *p++ do? What does it point to?