#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
Explain the use of bit fieild.
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
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Explain what is the concatenation operator?
Explain the use of fflush() function?
Explain why can’t constant values be used to define an array’s initial size?
How are strings stored in c?
State two uses of pointers in C?
What is the purpose of sprintf() function?
Give me the code of in-order recursive and non-recursive.
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
Is int a keyword in c?
What are two dimensional arrays alternatively called as?
What is pointer to pointer in c language?
What does node * mean?