What are the different types of storage classes in C?
Answer Posted / nashiinformaticssolutions
Auto: Default storage class for local variables.
Static: Retains variable value between function calls.
Extern: Refers to global variables used in other files.
Register: Suggests storing variables in the CPU register.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define Array of pointers.
What is structure data type in c?
What are bitwise shift operators in c programming?
Do you know pointer in c?
What does static variable mean in c?
What does c mean before a date?
What is the difference between void main and main in c?
Is sizeof a keyword in c?
What is difference between static and global variable in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the size of empty structure in c?
What is the difference between printf and scanf in c?
What is the use of getch ()?
How many bytes is a struct in c?
Why do we need arrays in c?