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 / karthika
pass1 fail2
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
How do we open a binary file in Read/Write mode in C?
What is the best style for code layout in c?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
The file stdio.h, what does it contain?
What is an operator?
What is meant by preprocessor in c?
Is c easier than java?
Who developed c language and when?
What is string function in c?
What is the purpose of realloc()?
How to draw the flowchart for structure programs?
What does the c in ctime mean?
What language is lisp written in?
What is f'n in math?
What is a null pointer in c?