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 sizeof int?
Explain pointer. What are function pointers in C?
What is meant by preprocessor in c?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What is a newline escape sequence?
Do pointers need to be initialized?
What are compound statements?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is the 'named constructor idiom'?
What are the types of operators in c?
What are header files in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain the difference between call by value and call by reference in c language?
What is a substring in c?
What does char * * argv mean in c?