#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 is c programing language?
What is c variable?
Differentiate between Macro and ordinary definition.
How can I determine whether a machines byte order is big-endian or little-endian?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Do you know the difference between malloc() and calloc() function?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is conio h in c?
Explain enumerated types.
Is it better to bitshift a value than to multiply by 2?
What is the best way of making my program efficient?
What is function definition in c?
Write the control statements in C language
What is data structure in c and its types?