Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What does extern mean in a function declaration?

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


Please Help Members By Posting Answers For Below Questions

How do you use a pointer to a function?

1037


how to count no of words,characters,lines in a paragraph.

4386


in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above

1024


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

1073


Explain the difference between null pointer and void pointer.

1041


Write a program to reverse a given number in c language?

1062


How many keywords are there in c?

1032


i want to know the procedure of qualcomm for getting a job through offcampus

2420


How can I write functions that take a variable number of arguments?

1086


What is advantage of pointer in c?

1132


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); } }

2444


How do you determine whether to use a stream function or a low-level function?

1091


Describe the modifier in c?

1065


Why header files are used?

1080


What functions are used for dynamic memory allocation in c language?

1093