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

}

Answers were Sorted based on User's Feedback



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

Answer / vadivelt

Program should give compiler error. Cos, u r trying to
allocate two different storage area to sigle int
variable 'i'.

ie.,
The below statement is invalid.
extern static int i;

Is This Answer Correct ?    8 Yes 1 No

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

Answer / ashwini prakash

output will be..
20
11
20

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More C Interview Questions

What is a lvalue

0 Answers   Global Logic,


Can we increase size of array in c?

0 Answers  


What does 3 mean in texting?

0 Answers  


What is the diffences between Windows XP and Windows Visa

1 Answers   Aricent, FHF,


what is use#in c

3 Answers  


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

0 Answers  


Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"

0 Answers  


What is the use of header?

0 Answers  


how to write a c program to print list of fruits in alpabetical order?

0 Answers  


What is local and global variable in c?

0 Answers  


What is main return c?

0 Answers  


Tell us two differences between new () and malloc ()?

0 Answers   Adobe,


Categories