What is the result
main()
{
char c=-64;
int i=-32
unsigned int u =-16;
if(c>i){
printf("pass1,");
if(c<u)
printf("pass2");
else
printf("Fail2");}
else
printf("Fail1);
if(i<u)
printf("pass2");
else
printf("Fail2")
}
a)Pass1,Pass2
b)Pass1,Fail2
c)Fail1,Pass2
d)Fail1,Fail2
e)none
Answer Posted / madhuri
here int i=-32 is not terminated so syntax error
if that statement was terminated then the answer would be
none in the given options because the output of the program
would be
pass1
pass2
pass2
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain output of printf("Hello World"-'A'+'B'); ?
What is the use of a semicolon (;) at the end of every program statement?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is file in c preprocessor?
What is class and object in c?
Are there namespaces in c?
what is different between auto and local static? why should we use local static?
write a program in c language to print your bio-data on the screen by using functions.
How a string is stored in c?
Is it possible to pass an entire structure to functions?
What is equivalent to ++i+++j?
Can include files be nested? How many levels deep can include files be nested?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is void c?
Wt are the Buses in C Language