#include
#include
void main()
{
int x,y,max;
clrscr();
printf("enter number of value1");
scanf("%d",&x);
printf("enter number of value2");
scanf("%d",&y);
max = (x>y?x:y);
printf("maximum is %d",max);
getch();
}
this blog is for the new programmer in programing field...
0 comments:
Post a Comment