What is extern storage class in c?



What is extern storage class in c?..

Answer / Pramod Kumar Mishra

"Extern Storage Class" in C programming is used for variables that are declared outside of any function but are not initialized. These variables have a global scope and can be accessed by multiple functions.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is the advantage of a random access file?

1 Answers  


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

1 Answers   Wilco,


f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


How can I find leaf node with smallest level in a binary tree?

1 Answers  


What are the modifiers available in c programming language?

1 Answers  


Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.

8 Answers  


What is zero based addressing?

1 Answers  


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

1 Answers  


Tell me with an example the self-referential structure?

1 Answers  


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1 Answers  


Explain what is the difference between a string and an array?

1 Answers  


What is the g value paradox?

1 Answers  


Categories