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 |
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
what is compiler
Explain what is wrong with this statement? Myname = ?robin?;
cavium networks written test pattern ..
hi any body pls give me company name interview conduct "c" language only
How to write a C program to determine the smallest among three nos using conditional operator?
Function to find the given number is a power of 2 or not?
What language is lisp written in?
How to delete a node from linked list w/o using collectons?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
what is the associativity of bitwise OR operator?
Write a program to identify if a given binary tree is balanced or not.