how can we use static and extern?and where can we use this?

Answer Posted / vignesh1988i

static and extern are some types of storage classes in C...
there are four types of storage classes in C:
1) automatic (auto) storage class
2) static storage class
3) register storage class
4) extern storage class

static is a one which will be read only once by the compiler
(ie) it will ignore an another pass.... or it will be
initialized only once....... the scope of this class is
within the block only....

extern is a global declaration , but most of the compilers
dont prefer it to be used within a program.......


thank u

Is This Answer Correct ?    3 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

please send me the code for multiplying sparse matrix using c

1918


Why is c so important?

769


What are dangling pointers in c?

817


How do you define a function?

763


code for replace tabs with equivalent number of blanks

1872


Explain how can I open a file so that other programs can update it at the same time?

839


Explain how can I make sure that my program is the only one accessing a file?

849


What do you mean by c?

771


Is that possible to store 32768 in an int data type variable?

862


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

800


what are the different storage classes in c?

847


FILE PROGRAMMING

1975


What is the explanation for cyclic nature of data types in c?

846


Define VARIABLE?

888


What is preprocessor with example?

764