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 / aravind

Extern is nothing but a memory storage type.If we declare extern before the function than the variable can be accessed by that function not only locally but externally too.
extern int a=4
Int fun (int x)
{
x=a;
print gives a=4

Is This Answer Correct ?    8 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

1238


What will the preprocessor do for a program?

1013


write a programming in c to find the sum of all elements in an array through function.

2111


Why do we use header files in c?

1014


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

1878


Explain how many levels deep can include files be nested?

1023


What is the use of getchar() function?

1069


I came across some code that puts a (void) cast before each call to printf. Why?

1149


How can I make it pause before closing the program output window?

989


What is page thrashing?

1025


If null and 0 are equivalent as null pointer constants, which should I use?

1114


What is new line escape sequence?

1262


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

997


What is sizeof c?

999


Using which language Test cases are added in .ptu file of RTRT unit testing???

4216