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 / sanjev kumar sasode

56 93 (ANSI)
57 94 (Turbo C)

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we change the value of #define in c?

1060


What is the difference between functions getch() and getche()?

1141


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

1393


How can you access memory located at a certain address?

1166


What is the use of function in c?

1252


What is difference between array and structure in c?

1272


What is the size of enum in c?

1175


What will be the outcome of the following conditional statement if the value of variable s is 10?

1375


What is the use of volatile?

1153


What are the advantages of union?

1121


What is a null pointer in c?

1317


Explain what are header files and explain what are its uses in c programming?

1206


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

1292


Difference between Function to pointer and pointer to function

1130


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

2025