x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
How would you rename a function in C?
The differences between Windows XP and Windows Visa
What is main void in c?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
Explain how many levels deep can include files be nested?
Why is struct padding needed?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
How do you write a program which produces its own source code as its output?
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
7 Answers Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,
Which are low level languages?
What are logical errors and how does it differ from syntax errors?