What are Storage Classes in C ?
Answer Posted / sanya
stroge refes to the scope of the variable and memory
allocatin by the compiler to store the varibl. scope of a
variable is the boundary within which a variable can be
used store class defines the scope and lifetime of variable.
from the point of c compiler,a variable name identifies
physical loction from from a computer where variable is
stored. there are to memory location in a computer system
where variable are stored as memory and cpu register
there are four type
1.automatic
2.register
3.static
4.external
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is c language used for?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What are the types of type specifiers?
Write a program for finding factorial of a number.
How do you use a 'Local Block'?
What are the disadvantages of external storage class?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Explain what is a const pointer?
What is the use of f in c?
In c programming language, how many parameters can be passed to a function ?
What is the meaning of 2d in c?
hi send me sample aptitude papers of cts?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is d'n in c?