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

output for following code???

main()
{
int x=2,y,z;
x*=3+2;
printf("1.%d\n",x);
x*=y=z=4;
printf("2.%d %d %d\n",x,y,z);
x=y==z;
printf("3.%d\n",x);
x==(y=z);
printf("%d",x);
}

Answer Posted / nandhini

1.10
2.40
3.4
4

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is structure important for a child?

1155


Explain indirection?

1184


Explain about the functions strcat() and strcmp()?

1100


What is the difference between text files and binary files?

1401


Which of these functions is safer to use : fgets(), gets()? Why?

1166


How can I read data from data files with particular formats?

1097


Explain what is the difference between a free-standing and a hosted environment?

1241


How does placing some code lines between the comment symbol help in debugging the code?

1066


Write a program on swapping (100, 50)

1169


What does %d do?

1363


What is this pointer in c plus plus?

1144


What is sizeof array in c?

1117


What are structure members?

1149


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

4055


What is a pointer value and address in c?

1187