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...

extern static int i
func()
{
i =10;
i++;
printf("%d \n",i);
}
main()
{
i =20;
printf("%d \n",i);
func();
printf("%d \n",i);

}

Answer Posted / ashwini prakash

output will be..
20
11
20

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are logical errors and how does it differ from syntax errors?

1349


What is default value of global variable in c?

1049


Why is it that not all header files are declared in every C program?

1281


What language is lisp written in?

1322


How can I do serial ("comm") port I/O?

1215


What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.

4332


Explain the difference between malloc() and calloc() in c?

1098


What is restrict keyword in c?

1168


Write the control statements in C language

1279


What is use of integral promotions in c?

1207


How can you increase the allowable number of simultaneously open files?

1210


Write a program to find factorial of a number using recursive function.

1177


Explain how can you tell whether a program was compiled using c versus c++?

1144


write a program to find out prime number using sieve case?

2137


In a header file whether functions are declared or defined?

1173