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 / manikanta

1.10
2.40 4 4
3.1
1

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of getchar functions?

1185


How do you construct an increment statement or decrement statement in C?

1241


How can I implement sets or arrays of bits?

1049


write a program for the normal snake games find in most of the mobiles.

2265


Where we use clrscr in c?

1141


What is assignment operator?

1063


Why is event driven programming or procedural programming, better within specific scenario?

2442


When can you use a pointer with a function?

1080


Is it possible to have a function as a parameter in another function?

1085


Explain why can’t constant values be used to define an array’s initial size?

1362


Explain what is a stream?

1097


What is a null string in c?

1052


Explain 'bus error'?

1103


What is a built-in function in C?

1611


Give me the code of in-order recursive and non-recursive.

1378