MAXIMUM OF 2 in C Programming

Image result for c programming

MAXIMUM OF 2 in C Programming
Code:
  #include<stdio.h>
int main(){
  int a,b;
  scanf("%d",&a);
  scanf("%d",&b);
  if (a>b)
    printf("%d is the maximum number",a);
  else
    printf("%d is the maximum number",b);
 return 0;
}

No comments