what does keyword ‘extern’ mean in a function declaration?

Answer Posted / vadivel t

Extern int a; -> means that, a int variable called 'a;
defined in any of the source file in the project and can be
accessed here in the file using extern declaration.

Is This Answer Correct ?    19 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the difference between strcpy() and memcpy() function?

595


What are integer variable, floating-point variable and character variable?

609


What is a string?

666


What is a pointer variable in c language?

644


In c language can we compile a program without main() function?

580






What is conio h in c?

623


What is external variable in c?

613


What happens if a header file is included twice?

596


a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.

4545


Why do we use static in c?

633


number of times a digit is present in a number

1543


which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above

1417


Explain what standard functions are available to manipulate strings?

613


Tell us the use of fflush() function in c language?

638


When can a far pointer be used?

588