What are Storage Classes in C ?
Answer Posted / thomas
Basically, storage classes in c are there to define the
storage & scope of the various sorts of variables.
we r having following 4 storage classes in C.
01.auto
02.register
03.extern
04.static
In this auto & register has local scope releted to block &
extern & static has global scope to main program.
| Is This Answer Correct ? | 129 Yes | 21 No |
Post New Answer View All Answers
Is a house a shell structure?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
what are the 10 different models of writing an addition program in C language?
What is union and structure in c?
What is malloc return c?
List the difference between a While & Do While loops?
What is #include stdlib h?
What is a rvalue?
Write a program on swapping (100, 50)
What are the advantages of external class?
Does c have an equivalent to pascals with statement?
Why ca not I do something like this?
What are c preprocessors?
What is modeling?