x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / jignesh patel
IN THIS QUSTION X=Y==Z IS NOT TRU BEACUSE NOT SECIFY MY
THINK ARE EXPLAIN BELOW
X=2 ,Y=6 ,Z=6
IF(Y==Z)
X=2
PRINTF(" %d ",X);
ELSE
PRINTF("FALSE CONDITION");
OUR QUSTION IS MANY MISTAKE
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What are the differences between new and malloc in C?
Write a program to find factorial of a number using recursive function.
Where can I get an ansi-compatible lint?
Differentiate between the = symbol and == symbol?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain the array representation of a binary tree in C.
What are the uses of null pointers?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What is uint8 in c?
Where are local variables stored in c?
Can you return null in c?
What is difference between union All statement and Union?
Explain what are preprocessor directives?
Describe how arrays can be passed to a user defined function