What are Storage Classes in C ?
Answer Posted / milind rane.
Storage classes in c are as follows:
1)Automatic storage class.
2)Register storage class.
3)Static storage class.
4)External Storage Class.
And here value stored in CPU Register can always be accessed
faster than the one that is stored memory.
Hope the Ans. is correct!
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is header file definition?
What is volatile, register definition in C
What do you mean by c what are the main characteristics of c language?
What is a stream?
How do you write a program which produces its own source code as output?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is chain pointer in c?
What is the difference between a function and a method in c?
What is the use of define in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is the purpose of the preprocessor directive error?
Define C in your own Language.