x=2,y=6,z=6
x=y==z;
printf(%d",x)
Answer Posted / manjunath kusagur
in memory first location hold value of x as 2....ofter
assigning x=y..x(6)<-y..value of x is overwritten because
memory location holds only one value at a time means now x
holds value as 6......
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How can I send mail from within a c program?
There seem to be a few missing operators ..
What is strcmp in c?
What is the right way to use errno?
How do you convert strings to numbers in C?
What is #include stdio h and #include conio h?
What is %g in c?
What is type qualifiers?
What are the 4 data types?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
explain what is an endless loop?
Is c procedural or object oriented?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Explain output of printf("Hello World"-'A'+'B'); ?
How do I round numbers?