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 is #define in c?

995


Write a C program to count the number of email on text

1857


What is the use of pragma in embedded c?

1009


Do you know the use of 'auto' keyword?

1134


What is the difference between typedef and #define?

997


Write a code to generate a series where the next element is the sum of last k terms.

1174


Explain what is the general form of a c program?

1035


What will be your course of action for a push operation?

1053


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

1092


What standard functions are available to manipulate strings?

1080


What does int main () mean?

961


Why do we need functions in c?

959


How can I trap or ignore keyboard interrupts like control-c?

1025


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

1020


Explain what is a 'locale'?

1022