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 / bee
answer is c...
fail1,pass 2
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What does %2f mean in c?
What is the use of extern in c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Is that possible to store 32768 in an int data type variable?
What is use of null pointer in c?
Why is c known as a mother language?
What are the differences between Structures and Arrays?
How do you print an address?
What are the advantages of the functions?
What is the difference between malloc() and calloc() function in c language?
What is the difference between constant pointer and constant variable?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
How will you delete a node in DLL?
Explain how does free() know explain how much memory to release?
What is c language used for?