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 / nageswari
none
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is a volatile keyword in c?
What is signed and unsigned?
What is difference between structure and union in c?
Explain the difference between #include "..." And #include <...> In c?
Explain the difference between strcpy() and memcpy() function?
What does the function toupper() do?
What are the header files used in c language?
What is hashing in c language?
The file stdio.h, what does it contain?
What happens if header file is included twice?
Write a program to check palindrome number in c programming?
What is the sizeof () operator?
Why is c so popular?
What are the __date__ and __time__ preprocessor commands?
Why is structure important for a child?