What are Storage Classes in C ?
Answer Posted / ramiz n sayyed
if we declare any variable its type and storage class is
also be declare.storage class tells us that
1.where the variable is stored.
2.what is its initial value.
3.what is the scope of the variable.
4.and last is what is the life of the variable.
THERE ARE FOUR TYPES OF STORAGE CLASS IN C-
1.AUTOMATIC STORAGE CLASS
2.REGISTER STORAGE CLASS
3.STATIC STORAGE CLASS
4.EXTERNAL STORAGE CLASS
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What are the ways to a null pointer can use in c programming language?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is a good data structure to use for storing lines of text?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Differentiate between static and dynamic modeling.
What is scanf_s in c?
What is the use of a ‘ ’ character?
explain how do you use macro?
What is the full form of getch?
What is meant by inheritance?
Write a program to find the biggest number of three numbers in c?
Explain the difference between the local variable and global variable in c?