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


Please Help Members By Posting Answers For Below Questions

What is the use of getch ()?

648


How do you define CONSTANT in C?

665


When c language was developed?

646


If you know then define #pragma?

686


Describe explain how arrays can be passed to a user defined function

613






What is union and structure in c?

632


What would be an example of a structure analogous to structure c?

589


What happens if header file is included twice?

665


What is the explanation for the dangling pointer in c?

688


Which type of language is c?

660


Explain how do you determine the length of a string value that was stored in a variable?

681


How many levels of pointers have?

606


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

621


What will be the outcome of the following conditional statement if the value of variable s is 10?

783


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2340