google407ec42f1ae5ff0e.html
top of page

Program to find biggest number from three given numbers

Program to find biggest number from three given numbers

#include<stdio.h>

int main(void)

{

int a,b,c,big;

printf("Enter three numbers : ");

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

if(a>b)

{

if(a>c)

big=a;

else

big=c;

}

else

{

if(b>c)

big=b;

else

big=c;

}

printf("Biggest number is %d\n",big);

return 0;

}


1 view0 comments

Recent Posts

See All
bottom of page