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

main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answer Posted / lucky

correct answer is 57 94

Is This Answer Correct ?    16 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the difference between a free-standing and a hosted environment?

1346


Differentiate between the = symbol and == symbol?

1369


What is the difference between printf and scanf )?

1155


What are global variables and explain how do you declare them?

1187


What is default value of global variable in c?

1055


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

1286


What does return 1 means in c?

1122


How do you override a defined macro?

1318


Explain how can I prevent another program from modifying part of a file that I am modifying?

1148


What is the purpose of scanf() and printf() functions?

1303


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

2557


Is it possible to initialize a variable at the time it was declared?

1259


write a program to rearrange the array such way that all even elements should come first and next come odd

2357


Can we assign integer value to char in c?

1343


Does c have an equivalent to pascals with statement?

1070