In this tutorial, we will discuss a concept of C program: find greatest of three numbers using the function
In this post, we will learn how to find the greatest number of three numbers using a user-defined function in the C programming language
In my previous post, I have explained the various approaches to find the largest number of among three numbers in C language
However, in this program, we embed the logic of the “find the greatest of three number” program in the function.
Here, I have explained how to find the greatest number from the given three numbers and how to embed this logic in the function.
Program 1
This program allows the user to enter three numbers and compare to select the largest number using nested if statements
#include <stdio.h> #include <stdlib.h> biggestNumber(int,int,int);//function prototype int main() { int a,b,c; printf("Enter the three numbers\n"); scanf("%d%d%d",&a,&b,&c); //read the numbers from user int result=biggestNumber(a,b,c);//function call printf("Biggest number is: %d\n",result); //display the output on the screen getch(); return 0; } int biggestNumber(int a,int b,int c){//function definition with parameter if(a>b) { if(a>c) return a; else return c; } else { if(b>c) return b; else return c; } }
When the above code is executed, it produces the following results
Enter the three numbers 45 89 67 Biggest number is: 89
This program allows the user to enter three numbers and compare to select the largest number using if-else-if statements
Program 2
#include <stdio.h> #include <stdlib.h> biggestNumber(int,int,int);//function prototype int biggestNumber(int a,int b,int c){//function definition with parameter int biggest; if(a>b && a>c) biggest=a; else if(b>a && b>c) biggest=b; else biggest=c; return biggest; } int main() { int a,b,c; printf("Enter the three numbers\n"); //reads the number for find largest scanf("%d%d%d",&a,&b,&c); int result=biggestNumber(a,b,c);//call the function printf("Biggest number is: %d\n",result); //display output on the screen getch(); return 0; }
When the above code is executed, it produces the following results
Enter the three numbers 34 56 43 Biggest number is: 56
Similar post
C program to find the largest among three numbers using function
Python code to find the largest of three numbers using the function
C++ code to find the largest of three numbers using the function
Java code to find the largest of three numbers
C code to find the largest of three numbers
C++ code to find the largest of three numbers
Python code to find the largest of three numbers
Java program to find the middle of three number using Method
C code to find the middle of three number using the function
C++ code to find the middle of three number using the function
Python code to find the middle of three number using the function
Java code to find middle of three numbers
C code to find middle of three numbers
C++ code to find middle of three numbers
Python code to find middle of three numbers
Java code to find largest of three numbers in an array
Java code to find smallest of three numbers in an array
C code to find the middle of three number using the function
C++ code to find the middle of three number using the function
Suggested for you
Nested if statement in C++ language
Data type in C++ language
The operator in Python language
If statement in Python language
Data types and Variable in Python
Datatype and variables in Java programming language
If statements in Java language
10 best Ways to Subtract Two Numbers in Java (With Examples) In this article, we…
Array Data Structure: Definition, Types, Operations & Advantages Array Data Structure Introduction In this post,…
20 ways to subtract two numbers in Java In this article, we will discuss the…
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…