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 / jack
c) Fail1,Pass2..........
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
please send me the code for multiplying sparse matrix using c
Describe wild pointers in c?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Explain void pointer?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What are the 4 types of programming language?
What is the method to save data in stack data structure type?
What is this infamous null pointer, anyway?
Is main an identifier in c?
What is f'n in math?
Tell us two differences between new () and malloc ()?
what is different between auto and local static? why should we use local static?
What is #include conio h?
What are the restrictions of a modulus operator?
Is it cc or c in a letter?