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
How can I find out if there are characters available for reading?
Explain the use of #pragma exit?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What is clrscr in c?
Explain how to reverse singly link list.
Differentiate between the expression “++a” and “a++”?
Explain what header files do I need in order to define the standard library functions I use?
What is data structure in c programming?
What is the use of a semicolon (;) at the end of every program statement?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Which is the best website to learn c programming?
Explain 'far' and 'near' pointers in c.
What is the right type to use for boolean values in c? Is there a standard type?
Do you know what are bitwise shift operators in c programming?
What is pointers in c?