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

Answers were Sorted based on User's Feedback



What is the result main() { char c=-64; ..

Answer / divyesh

Fail1, Pass2

Is This Answer Correct ?    23 Yes 2 No

What is the result main() { char c=-64; ..

Answer / jack

c) Fail1,Pass2..........

Is This Answer Correct ?    10 Yes 1 No

What is the result main() { char c=-64; ..

Answer / bee

answer is c...
fail1,pass 2

Is This Answer Correct ?    6 Yes 1 No

What is the result main() { char c=-64; ..

Answer / madhuri

here int i=-32 is not terminated so syntax error
if that statement was terminated then the answer would be
none in the given options because the output of the program
would be
pass1
pass2
pass2

Is This Answer Correct ?    3 Yes 1 No

What is the result main() { char c=-64; ..

Answer / bishnu agrawal

it is an error bcoz u can assing a signed value to unsigned variable so answer is null

Is This Answer Correct ?    1 Yes 1 No

What is the result main() { char c=-64; ..

Answer / subbu

this program gives an error that comparison between signed
and unsigned int

Is This Answer Correct ?    4 Yes 5 No

What is the result main() { char c=-64; ..

Answer / vikraman85

u should not assign a negative value to unsigned int! b'coz
it has only +ve values 0to2^15-1..

Is This Answer Correct ?    1 Yes 2 No

What is the result main() { char c=-64; ..

Answer / nageswari

none

Is This Answer Correct ?    1 Yes 5 No

What is the result main() { char c=-64; ..

Answer / karthika

pass1 fail2

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More C Interview Questions

write a program to delete an item from a particular location of an linear array?

1 Answers  


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


Explain how does free() know explain how much memory to release?

0 Answers  


What is #include cctype?

0 Answers  


Why c is called free form language?

0 Answers  






How can I make sure that my program is the only one accessing a file?

0 Answers  


how to write palindrome program?

3 Answers  


List the difference between a 'copy constructor' and a 'assignment operator' in C?

0 Answers   Accenture,


Why pointers are used?

0 Answers  


why effort estimation is important?

1 Answers  


what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel

1 Answers   V2 Solutions,


Can you please explain the difference between strcpy() and memcpy() function?

0 Answers  


Categories