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
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How many types of arrays are there in c?
Write a C program to count the number of email on text
When should the volatile modifier be used?
What is substring in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Why is main function so important?
What is #include conio h?
What is the purpose of void in c?
How can a number be converted to a string?
What is the use of sizeof () in c?
What is a buffer in c?
What is an endless loop?
Is there sort function in c?
Explain union.