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 |
Explain how can I write functions that take a variable number of arguments?
Write a program to print fibonacci series without using recursion?
Explain the difference between malloc() and calloc() function?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What is the use of getchar() function?
Can we change the value of constant variable in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Which is better malloc or calloc?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is the method to save data in stack data structure type?
Explain what are its uses in c programming?