What are Storage Classes in C ?

Answer Posted / priya

WHEN we define any funtion in c program then we
can call that in every definend class.
there are four types of storage class. they are
1 AUTO OR AUTOMATIC STORAGE CLASS
2 REGISTER STORAGE CLASS
3 STATIC STORAGE CLASS
4 EXTERNALSTORAGE CLASS

Is This Answer Correct ?    31 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the benefit of using an enum rather than a #define constant?

706


Can we initialize extern variable in c?

618


How do I use void main?

617


What is wrong with this code?

681


what is the role you expect in software industry?

1640






What is strcmp in c?

586


When c language was developed?

621


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1245


What is difference between Structure and Unions?

626


What is the most efficient way to count the number of bits which are set in an integer?

576


What is typedef?

655


What is wild pointer in c?

590


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

802


Is c is a low level language?

551


Write a program to reverse a given number in c language?

604