#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


Please Help Members By Posting Answers For Below Questions

define string ?

664


Explain what is the difference between a free-standing and a hosted environment?

632


Does c have class?

609


Why is C language being considered a middle level language?

652


Are pointers integers in c?

609






Do you know pointer in c?

587


Are there namespaces in c?

566


write a program to find the given number is prime or not

3837


Explain high-order and low-order bytes.

663


An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above

645


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

665


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

1539


Write a c program to demonstrate character and string constants?

1678


What is data types?

636


What are the key features in c programming language?

607