C Program To Find The Biggest(Largest) Of 3 Numbers. In this program, We find the biggest of three number using simple else-if ladder. Read more about C Programming Language .
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************** | |
* You can use all the programs on www.c-program-example.com | |
* for personal and learning purposes. For permissions to use the | |
* programs for commercial purposes, | |
* contact [email protected] | |
* To find more C programs, do visit www.c-program-example.com | |
* and browse! | |
* This program was originally posted at | |
* http://www.c-program-example.com/2011/09/you-can-use-all-programs-on-www_30.html | |
* Happy Coding | |
***********************************************************/ | |
/* C Program To Find The Biggest(Largest) Of 3 Numbers */ | |
#include<stdio.h> | |
int main() { | |
int a, b, c; | |
printf("Enter the value for a:\n"); | |
scanf("%d", &a); | |
printf("Enter the value for b:\n"); | |
scanf("%d", &b); | |
printf("Enter the value for c:\n"); | |
scanf("%d", &c); | |
if ((a > b) && (a > c)) { | |
printf("\n The big one is a= %d", a); | |
} else if (b > c) { | |
printf("\n The big one is b= %d", b); | |
} else { | |
printf("\n The big one is c= %d", c); | |
} | |
return 0; | |
} |
Read more Similar C Programs Array In C Number System Simple C Programs
You can easily select the code by double clicking on the code area above.
To get regular updates on new C programs, you can Follow @c_program
You can discuss these programs on our Facebook Page. Start a discussion right now, our page!
Share this program with your Facebook friends now! by liking it
(c) www.c-program-example.com