What are the different types of storage classes in C?
Answer Posted / glibwaresoftsolutions
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
Is c is a middle level language?
How can I read data from data files with particular formats?
Why does not c have an exponentiation operator?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
c program for searching a student details among 10 student details
Subtract Two Number Without Using Subtraction Operator
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Explain indirection?
Why do we need functions in c?
What's the right way to use errno?
What is page thrashing?
Difference between goto, long jmp() and setjmp()?
Can an array be an Ivalue?
what do you mean by enumeration constant?
Explain void pointer?