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 |
What is the advantage of a random access file?
#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); }
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?
What are the modifiers available in c programming language?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What is zero based addressing?
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)
Tell me with an example the self-referential structure?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Explain what is the difference between a string and an array?
What is the g value paradox?