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 the difference between call by value and call by reference in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
given post order,in order construct the corresponding binary tree
Write a program to swap two numbers without using a temporary variable?
What is the use of printf() and scanf() functions?
Explain what is the difference between far and near ?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the explanation for the dangling pointer in c?
How can I split up a string into whitespace-separated fields?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
what do u mean by Direct access files? then can u explain about Direct Access Files?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
`write a program to display the recomended action depends on a color of trafic light using nested if statments
When was c language developed?
Why do we use null pointer?