Page 27 - INTRODUCTION_TO_C++_Neat
P. 27

RELATIONAL OPERATORS

#include<iostream.h>
#include<conio.h> void main()
{
int a,b; a=10;b=13;
if(a<b)
{ cout<<“a is less than b”; }
if(a>b)
{ cout<<”a is greater than b”; }
if(a<=b)
{ cout<<”a is less than or equal to b”; }
   22   23   24   25   26   27   28   29   30   31   32