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
How can I read and write comma-delimited text?
What is the purpose of 'register' keyword in c language?
What is the difference between printf and scanf in c?
Explain how can I manipulate strings of multibyte characters?
What is void c?
Describe the order of precedence with regards to operators in C.
What is the size of structure pointer in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is the use of static variable in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Why is extern used in c?
What is #define in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is the use of ?
What’s the special use of UNIONS?