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
can any one provide me the notes of data structure for ignou cs-62 paper
Is main an identifier in c?
Write a program with dynamically allocation of variable.
Can we assign string to char pointer?
How many levels deep can include files be nested?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
How can I remove the trailing spaces from a string?
When should I declare a function?
What is spaghetti programming?
How many main () function we can have in a project?
Is a pointer a kind of array?
What are different types of operators?
What are the types of macro formats?
Who invented bcpl language?
What is wrong with this initialization?