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
Explain what happens if you free a pointer twice?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is #line?
What is use of bit field?
What are the advantages and disadvantages of c language?
Explain how can I manipulate strings of multibyte characters?
What are global variables and explain how do you declare them?
What is #include stdlib h?
Explain modulus operator.
Why is c so popular?
Is c a great language, or what?
Write the syntax and purpose of a switch statement in C.
Can we access the array using a pointer in c language?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Define Spanning-Tree Protocol (STP)