x=2,y=6,z=6
x=y==z;
printf(%d",x)

Answer Posted / guest

y==z checks if both are equal and returns TRUE or FLASE
(1 / 0). In this case y = z = 6, so it returns TRUE / 1. x
= 1.

Is This Answer Correct ?    26 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ## preprocessor operator in c?

609


Where are c variables stored in memory?

592


What is unary operator?

656


What are multibyte characters?

642


One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.

2155






Explain what is the difference between a free-standing and a hosted environment?

632


why we wont use '&' sing in aceesing the string using scanf

1777


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

1368


Can we add pointers together?

612


What is pass by value in c?

593


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

3180


Explain how can you determine the size of an allocated portion of memory?

616


Is int a keyword in c?

552


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

622


What is the difference between volatile and const volatile?

559