//WAP TO FIND OUT BIGGEST NO FROM 3 NOS.
//WAP To Find Out Biggest No From 3 Nos.
#include<stdio.h>
#include<conio.h>
void main()
{
int a, b, c;
printf("enter the value of a, b, c");
scanf("%d%d%d" , &a, &b, &c);
if(a>b && a>c)
printf("A is biggest");
else if(b>a && b>c)
printf("B is biggest");
else
printf("C is biggest);
}
Examples-
a b c
12 5 7
5 12 7
7 5 12
-SHAHRUKH KHAN(CSE)
Comments
Post a Comment