What are Storage Classes in C ?
Answer Posted / pranab kumar rana
According to denis ritchie there are 5 types of storage classes
1. auto
2.static
3.register
4.extern
5. typrdef
you all know about the abobe 4 types but in typedef is
actually not used as a storage class . but when it combines
with a variable it comes to the resolution
'
| Is This Answer Correct ? | 127 Yes | 46 No |
Post New Answer View All Answers
What is the difference between text files and binary files?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is const and volatile in c?
Is it valid to address one element beyond the end of an array?
What is the size of array float a(10)?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is "Duff's Device"?
Define circular linked list.
What is include directive in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is the purpose of & in scanf?
What is the difference between struct and union in C?
Explain how can I manipulate strings of multibyte characters?
Explain how do you print an address?
how to build a exercise findig min number of e heap with list imlemented?