Computer Science, asked by knowledgeabcd, 1 year ago

Make a program to find the larger number from the two numbers entered by the user in C language

Answers

Answered by Anonymous
2

#include <stdio.h>

int main()

{

int a,b

printf("enter two number");

scanf("%d%d",&a,&b);

if(a>b)

{

printf("The larger number is %d",a);

}

else

{

printf("The larger number is %d",b);

}

Similar questions