#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 multibyte characters?
What are register variables? What are the advantage of using register variables?
When is a “switch” statement preferable over an “if” statement?
What does void main return?
Are there any problems with performing mathematical operations on different variable types?
What is operator promotion?
What is function and its example?
What is the use of function overloading in C?
What are external variables in c?
What is self-referential structure in c programming?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Do you know what are bitwise shift operators in c programming?
What is an arrays?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Is boolean a datatype in c?