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 send me the code for multiplying sparse matrix using c
Why is c so important?
What are dangling pointers in c?
How do you define a function?
code for replace tabs with equivalent number of blanks
Explain how can I open a file so that other programs can update it at the same time?
Explain how can I make sure that my program is the only one accessing a file?
What do you mean by c?
Is that possible to store 32768 in an int data type variable?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
what are the different storage classes in c?
FILE PROGRAMMING
What is the explanation for cyclic nature of data types in c?
Define VARIABLE?
What is preprocessor with example?