Home Q-15.Write a program that Below is the C program to find the largest among the three numbers Q-15.Write a program that Below is the C program to find the largest among the three numbers Author - admin July 09, 2019 0 Below is the C program to find the largest among the three numbers: #include<stdio.h> int main() { int a,b,c,m; printf("ENTER VALU:"); scanf("%d%d%d",&a,&b,&c); m=a; if(b>m)m=b; if(c>m)m=c; printf("The largest is. %d",m); } OUTPUT Facebook Twitter Whatsapp Newer Older