/* Largest of Given Three Number*/ main () { int a,b,c; clrscr(); printf("\nEnter three numbers"); scanf("%d%d%d",&a,&b,&c); if((a>b) && (a>c)) printf("\n %d is the largest number",a); else { if((b>a)&&(b>c)) printf("\n%d is the largest number",b); else printf("\n%d is the largest number",c); } } /* By:- WISHWAJEET */