What are the different types of storage classes in C?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
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 |
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
how will you write a program on linked lists using JAVA programming???????????
What are the preprocessor categories?
Tell us something about keyword 'auto'.
Why is c called c not d or e?
Where local variables are stored in c?
Describe the modifier in c?
What are 3 types of structures?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Define C in your own Language.
writ a program to compare using strcmp VIVA and viva with its output.
What is a function simple definition?