What are Storage Classes in C ?
Answer Posted / santhi
there are 4 types of storage classes.they are-
extern,auto,register,static.
| Is This Answer Correct ? | 441 Yes | 50 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Write a program to print "hello world" without using a semicolon?
How can you invoke another program from within a C program?
What are external variables in c?
What is typedf?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is volatile, register definition in C
What is 2 d array in c?
Distinguish between actual and formal arguments.
What is structure data type in c?
What is ctrl c called?
Can a pointer be static?
What is the advantage of using #define to declare a constant?
Define VARIABLE?
How would you use the functions fseek(), freed(), fwrite() and ftell()?