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
What is the best way to store flag values in a program?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is structure pointer in c?
Explain what is a stream?
Write a program to print "hello world" without using a semicolon?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Is boolean a datatype in c?
What are pointers? What are stacks and queues?
What is the correct declaration of main?
Explain the term printf() and scanf() used in c language?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
How is = symbol different from == symbol in c programming?
Is c procedural or object oriented?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
what is the role you expect in software industry?