Thursday, September 13, 2012

A simple example showing some comparison operators

/*******<soeasyprograms.blogspot.in>********/
#include<stdio.h>
#include<conio.h>
int main()
{
int number1 , number2;
printf("Enter the number1 number to compare.\n");
scanf("%d",&number1);
printf("Enter the number2 number to compare.\n");
scanf("%d",&number2);
printf("number1 > number2 has the value %d\n", number1 > number2);
printf("number1 < number2 has the value %d\n", number1 < number2);
printf("number1 == number2 has the value %d\n", number1 == number2);
return 0;
}

No comments:

Post a Comment