x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / amit
since "=" has a low precedence over "==" .. thus "y==z" will
be evaluated first and the returned value will be stored in
x which will be printed subsequently...
In this case since y equals z, x = 1 will be printed
cheers
AD
| Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
What is a program flowchart and how does it help in writing a program?
Do you know what are bitwise shift operators in c programming?
What do you mean by a sequential access file?
What does do in c?
What are the types of type specifiers?
What is a good way to implement complex numbers in c?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are qualifiers and modifiers c?
What are the types of pointers in c?
What does %c mean in c?
What is uint8 in c?
What are the storage classes in C?
What is the most efficient way to store flag values?
What is the benefit of using #define to declare a constant?
What is a buffer in c?