What are Storage Classes in C ?
Answer Posted / nagalakshmanarao
storage classes in c defines the scope and lifetime of variables.the storage classes are important only in multifunction and multiple file programms.
storage classes are 4 types:they are 1:auto
2:static
3:extern
4:register
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is declaration and definition in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Do you have any idea how to compare array with pointer in c?
How to draw the flowchart for structure programs?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Can math operations be performed on a void pointer?
Explain how do you determine whether to use a stream function or a low-level function?
What is the difference between mpi and openmp?
What is the sizeof () a pointer?
Is main a keyword in c?
Write a program to print ASCII code for a given digit.
How is a pointer variable declared?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are the header files used in c language?
What is a program?