Answer Posted / swetcha
extern is significant only with data declarations. In
function declarations, it can be used as a stylistic hint
to indicate that the function's definition is probably in
another source file, but there is no formal difference
between
extern int f();
and
int f();
| Is This Answer Correct ? | 91 Yes | 14 No |
Post New Answer View All Answers
What is an lvalue in c?
Do you know the use of 'auto' keyword?
write a program to find out prime number using sieve case?
Explain how do you print only part of a string?
What is main return c?
Explain what is the benefit of using an enum rather than a #define constant?
What is the scope of global variable in c?
What are the header files used in c language?
Does free set pointer to null?
Can a pointer be volatile in c?
How do c compilers work?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain why C language is procedural?
What are valid signatures for the Main function?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;