x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / purnananda behera, mca 3rd sem
answer is: x=6
because x=y=z
y=z, y hold the value of z. //here y = 6
x=y, x hold the value of y. //here x = 6
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
Where static variables are stored in memory in c?
how is the examination pattern?
Is c compiled or interpreted?
Why enum is used in c?
Write a program to swap two numbers without using a temporary variable?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Differentiate between a for loop and a while loop? What are it uses?
Distinguish between actual and formal arguments.
What is the heap in c?
What is the role of this pointer?
What are conditional operators in C?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are predefined functions in c?
What is structure in c language?