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
What is the use of getchar functions?
How do you construct an increment statement or decrement statement in C?
How can I implement sets or arrays of bits?
write a program for the normal snake games find in most of the mobiles.
Where we use clrscr in c?
What is assignment operator?
Why is event driven programming or procedural programming, better within specific scenario?
When can you use a pointer with a function?
Is it possible to have a function as a parameter in another function?
Explain why can’t constant values be used to define an array’s initial size?
Explain what is a stream?
What is a null string in c?
Explain 'bus error'?
What is a built-in function in C?
Give me the code of in-order recursive and non-recursive.