Find elements

C program:find greatest of three numbers using function

C program: find greatest of three numbers using the function

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

C program: find the greatest

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

Find the greatest of three numbers using Nested if statements

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

 

Find the greatest of three numbers using if-else-if statements

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

The operator in C++ language

If statement in C++ language

Nested if statement in C++ language

Data type in C++ language

Variable in C++ language

 

Operator in C language

If statement in C language

Data type in C language

Variable in C language

 

The operator in Python language

If statement in Python language

function in Python

Data types and Variable in Python

 

Datatype and variables in Java programming language

Operator in Java language

If statements in Java language

Method in Java language

 

Cpp program for find greatest of three numbers using function
Python program:find greatest of three numbers using function
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago