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 data segment that is followed by c?

619


Explain void pointer?

596


Can you return null in c?

603


Compare interpreters and compilers.

642


Combinations of fibanocci prime series

1117






What is clrscr in c?

682


Explain what is the difference between null and nul?

664


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

677


What is the use of bitwise operator?

694


Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.

657


How can a process change an environment variable in its caller?

658


What is extern variable in c with example?

547


What is void c?

573


Explain the difference between exit() and _exit() function?

639


What is the difference between far and near in c?

607