Answer Posted / zxg
(from MSDN)
Functions declared as extern are visible throughout all source files in the program (unless you later redeclare such a function as static). Any function can call an extern function.
Function declarations that omit the storage-class specifier are extern by default.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
How can I invoke another program or command and trap its output?
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
How can you find out how much memory is available?
What is .obj file in c?
What is the c value paradox and how is it explained?
List the difference between a While & Do While loops?
What is a program flowchart?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the time and space complexities of merge sort and when is it preferred over quick sort?
how to introdu5ce my self in serco
What is the sizeof () operator?
What is the difference between arrays and pointers?
What's the total generic pointer type?
What is the size of array float a(10)?
What is difference between Structure and Unions?