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
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
How to compare array with pointer in c?
Differentiate between a structure and a union.
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What does return 1 means in c?
How many bytes is a struct in c?
Write a program to print numbers from 1 to 100 without using loop in c?
What are the types of data files?
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?
How can I swap two values without using a temporary?
What is the main difference between calloc () and malloc ()?
What are structure types in C?
Is malloc memset faster than calloc?
FILE PROGRAMMING
What is a memory leak? How to avoid it?