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 do you use a pointer to a function?
how to count no of words,characters,lines in a paragraph.
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Explain the difference between null pointer and void pointer.
Write a program to reverse a given number in c language?
How many keywords are there in c?
i want to know the procedure of qualcomm for getting a job through offcampus
How can I write functions that take a variable number of arguments?
What is advantage of pointer in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
How do you determine whether to use a stream function or a low-level function?
Describe the modifier in c?
Why header files are used?
What functions are used for dynamic memory allocation in c language?