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
Explain what is the difference between a free-standing and a hosted environment?
what are bit fields? What is the use of bit fields in a structure declaration?
Apart from dennis ritchie who the other person who contributed in design of c language.
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What does %p mean c?
Are there constructors in c?
Write a C program in Fibonacci series.
Differentiate between functions getch() and getche().
Is that possible to add pointers to each other?
What is the difference between c &c++?
What is the purpose of 'register' keyword in c language?
Array is an lvalue or not?
can any one provide me the notes of data structure for ignou cs-62 paper
Are the expressions * ptr ++ and ++ * ptr same?