Friday, 2 November 2012

Program Of And, comma(,) , Relational(>) Operator In C++


#include<iostream.h>
#include<conio.h>

{

clrscr();

int a,b,c;

cout<<"Enter a,b,c";

cin>>a>>b>>c;


{
cout<<"\n a is Greater";

}


{
cout<<"\n b is Greater";

}


{
cout<<"\n c is Greater";

}


getch();
}

No comments:

Post a Comment