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
What is sizeof int?
Explain how can I write functions that take a variable number of arguments?
Explain what is the difference between text files and binary files?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Why is python slower than c?
When c language was developed?
How can I manipulate strings of multibyte characters?
Is it possible to initialize a variable at the time it was declared?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What are the key features in c programming language?
What are the three constants used in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What is bash c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Explain output of printf("Hello World"-'A'+'B'); ?