/* write a program to find out the largest between 2 number */
#include<stdio.h>
#include<conio.h>
void main()
{ int a,b;
                    clrscr();
                    printf(" \n Enter two number = ");
                    scanf("%d%d",&a,&b);
                    if(a>b)
printf("%d is largest ",a);
else
printf("%d is largest ",b);
                   getch();
}
/*output:---
Enter two number =10
20
            20 is largest
*/
👆👌😊😉
 

 
 
.png) 
 
Best blog to easy to understand code
ReplyDeleteBest blog to easy to understand code
ReplyDelete