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 / divyesh
Fail1, Pass2
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
What is the explanation for prototype function in c?
Why enum is used in c?
What are the 5 types of inheritance in c ++?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Explain that why C is procedural?
What is c mainly used for?
What is the significance of c program algorithms?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
How can I remove the leading spaces from a string?
What is self-referential structure in c programming?
what is the structure pointer?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is the use of parallelize in spark?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
How can you pass an array to a function by value?