What are Storage Classes in C ?
Answer Posted / milind rane.
Storage classes in c are as follows:
1)Automatic storage class.
2)Register storage class.
3)Static storage class.
4)External Storage Class.
And here value stored in CPU Register can always be accessed
faster than the one that is stored memory.
Hope the Ans. is correct!
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
Where local variables are stored in c?
Who developed c language and when?
Is anything faster than c?
What are the types of data structures in c?
What is a structure member in c?
Can the sizeof operator be used to tell the size of an array passed to a function?
Is the exit() function same as the return statement? Explain.
What are actual arguments?
Does free set pointer to null?
How can I do peek and poke in c?
Can we assign integer value to char in c?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is difference between structure and union in c?