KodeGod.com

014. Write a program to accept two number and print largest among them in C language


#include<stdio.h>

#include<conio.h>  

main()

{

int a,b;

clrscr();

printf("Enter numbers : ");

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

if(a>b)

printf("Largest value is....%d",a);

else

printf("Largest value is....%d",b);

getch();

}