#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
Can variables be declared anywhere in c?
Explain what is meant by high-order and low-order bytes?
What is a pointer in c plus plus?
what is different between auto and local static? why should we use local static?
How to throw some light on the b tree?
Explain the term printf() and scanf() used in c language?
What is the need of structure in c?
What is the difference between local variable and global variable in c?
what is bit rate & baud rate? plz give wave forms
Write a Program to find whether the given number or string is palindrome.
Explain what is the difference between the expression '++a' and 'a++'?
What is the value of uninitialized variable in c?
How can I sort a linked list?
How does sizeof know array size?
Does sprintf put null character?