Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#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

What are multibyte characters?

1190


What are register variables? What are the advantage of using register variables?

1231


When is a “switch” statement preferable over an “if” statement?

1209


What does void main return?

1195


Are there any problems with performing mathematical operations on different variable types?

1104


What is operator promotion?

1130


What is function and its example?

1270


What is the use of function overloading in C?

1213


What are external variables in c?

1164


What is self-referential structure in c programming?

1280


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3741


Do you know what are bitwise shift operators in c programming?

1153


What is an arrays?

1139


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

1326


Is boolean a datatype in c?

1128