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 / nageswari
none
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is #line?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is external variable in c?
What is queue in c?
Is it better to use a macro or a function?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
How can I run c program?
Do pointers take up memory?
What is c definition?
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
What is the use of parallelize in spark?
find the sum of two matrices and WAP for it.
Differentiate Source Codes from Object Codes
What are void pointers in c?