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
Why doesn't C support function overloading?
How is pointer initialized in c?
Why c is called procedure oriented language?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why pointers are used in c?
regarding pointers concept
What is d scanf?
Why is main function so important?
explain what is fifo?
Why do we use stdio h and conio h?
What is the use of #define preprocessor in c?
Are global variables static in c?
How are portions of a program disabled in demo versions?
What are the basic data types associated with c?
Explain what will the preprocessor do for a program?