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
What will be the outcome of the following conditional statement if the value of variable s is 10?
How can I manipulate individual bits?
What is assert and when would I use it?
What is time complexity c?
#include
List the variables are used for writing doubly linked list program.
In a byte, what is the maximum decimal number that you can accommodate?
What is double pointer?
swap 2 numbers without using third variable?
What is the size of empty structure in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is a loop?
How are pointers declared in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What are header files why are they important?