C programming to find the biggest and the smallest number between two numbers?
This c language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.
Program to find the biggest number from three given numbers in c
#include
void main()
{
int a,b,c;
clrscr();
printf(“Enter the frist number: “);
scanf(“%d”, &a);
printf(“Enter the second number number: “);
scanf(“%d”,&b);
printf(“Enter the thired number: “);
scanf(“%d”,&c);
//codtion to check biggest number
if(a>b&&a>c){
printf(“%d is biggest then %d and %d .” a, b, c);
}
//codtion to check biggest number
else if(b>a&&b>c){
printf(“%d is biggest then %d and %d .“,b, a, c)
}
else{
printf(“%d is biggest then %d and %d .“c, a, b);
}
getch();
}
Enter the first number: 8
Enter the second number: 10
Enter the third number: 7
10 is biggest then 8 and 7
Program to find the smallest number from three given numbers in c
#include
void main()
{
int a,b,c;
clrscr();
printf(“Enter the frist number: “);
scanf(“%d”, &a);
printf(“Enter the second number number: “);
scanf(“%d”,&b);
printf(“Enter the thired number: “);
scanf(“%d”,&c);
//codtion to check smallest number
if(a printf(“%d is smallest then %d and %d .” a, b, c);
}
//codtion to check smallest number
else if(b printf(“%d is smallest then %d and %d .“,b, a, c)
}
else{
printf(“%d is smallest then %d and %d .“c, a, b);
}
getch();
}
Enter the first number: 8
Enter the second number: 10
Enter the third number: 7
7 is smallest then 8 and 10
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this c programming code or input & output please comment below
If you have another question about c programming send an email by contacting us form are given on the page right side.
Please share your experience about this post,
Thank You!