when will be evaluated as true/
if(x==x==x)
a) x=1;
b) x=0;
c) x=-1;
d) none
Answer Posted / ramesh
none
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What does. int *x[](); means ?
What is an endless loop?
What is memory leak in c?
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.
Differentiate between full, complete & perfect binary trees.
What are the different types of errors?
How can I read in an object file and jump to locations in it?
What is difference between constant pointer and constant variable?
What is putchar() function?
What is the purpose of ftell?
Explain the binary height balanced tree?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Why shouldn’t I start variable names with underscores?