when will be evaluated as true/
if(x==x==x)
a) x=1;
b) x=0;
c) x=-1;
d) none
Answer Posted / hussain reddy
x=1
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain how can I pad a string to a known length?
What is the full form of getch?
write a program to generate address labels using structures?
Why does everyone say not to use gets?
What are enums in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Why calloc is better than malloc?
write a program to print data of 5 five students with structures?
Why is %d used in c?
Explain main function in c?
Is there a way to compare two structure variables?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is wild pointer in c?
Explain built-in function?
What are the 4 types of organizational structures?