when will be evaluated as true/
if(x==x==x)
a) x=1;
b) x=0;
c) x=-1;
d) none
Answer Posted / vignesh1988i
all the three cases possible as for as i know.......
x=1
x=0
x=-1
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
How can I handle floating-point exceptions gracefully?
Explain Function Pointer?
Explain what is the difference between a string and an array?
What are the features of c languages?
What does node * mean?
Explain what is the benefit of using const for declaring constants?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is context in c?
What type is sizeof?
What is the maximum length of an identifier?
What is ponter?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is the scope of global variable in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What the different types of arrays in c?