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
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is self-referential structure in c programming?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is New modifiers?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is the purpose of 'register' keyword?
How do you use a 'Local Block'?
Explain how can I write functions that take a variable number of arguments?
Is that possible to add pointers to each other?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is C language ?
What is the explanation for cyclic nature of data types in c?
Why #include is used in c language?
What are the advantages of the functions?