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
What is the meaning of c in c language?
What is the use of function overloading in C?
When should a type cast be used?
What is a char c?
What are bitwise shift operators in c programming?
Differentiate between a for loop and a while loop? What are it uses?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
List the difference between a 'copy constructor' and a 'assignment operator' in C?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Why is event driven programming or procedural programming, better within specific scenario?
What is difference between scanf and gets?
What are the key features in c programming language?
Explain enumerated types in c language?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain two-dimensional array.