#include <stdio.h>
int main()
{
if ("X" <"x")
printf("X smaller than x
");
}
my question is whats the mistake in this program? find it and please tell me..
Answer Posted / preethi
#include <stdio.h>
void main()
{
int X,x;
if (X <x)
printf("X smaller than x");
}
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are unions in c?
What is #line in c?
Tell me what is the purpose of 'register' keyword in c language?
Should a function contain a return statement if it does not return a value?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
How do you determine whether to use a stream function or a low-level function?
i want to know the procedure of qualcomm for getting a job through offcampus
Why static is used in c?
Explain what standard functions are available to manipulate strings?
praagnovation
What does 1f stand for?
What is the stack in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
what is uses of .net
What are valid signatures for the Main function?