#include<conio.h>
#include<stdio.h>
void main()
{
int i;
if(1,0,2,3)
{
printf("if");
}
else
{
printf("else");
}
getch();
}
Can any body tell the answer of this question with explanation?

Answer Posted / guest

yhaa... it will print if....... okay...


why u know.... because in if condition u r not checking any
conditions... thatis why,,,,,

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the correct declaration of main?

674


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

1860


Is c programming hard?

573


What do mean by network ?

649


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

662






Explain the advantages of using macro in c language?

572


How do you use a pointer to a function?

626


What is scope rule of function in c?

542


What is wrong with this declaration?

606


Explain what is the concatenation operator?

620


How can you avoid including a header more than once?

559


c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above

725


What is difference between main and void main?

622


What is string length in c?

603


Why is #define used?

786