#include <stdio.h>
int main ()
{
int a,b;
printf("Find the maximum between two number: ");
scanf("%d %d", &a, &b);
if ( a > b ){
printf("Minimum Number: %d\n",a);
}
if ( b > a ){
printf("Maximum Number: %d\n",b);
}
if ( a == b ){
printf("Number is equal");
}
return 0;
}
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.