In this article, we have explored how to find Maximum, Minimum, Average of 3 numbers and implement the technique in C Programming Language.
Table of contentsProblem statementApproach to solveImplementationOutputProblem statement
In this problem, we have to find the Maximum, Minimum, Average of 3 numbers.
For example, a=3, b=5, c=9
max=9 min=3 avg=5.666667
We will implement this problem in C Programming Language.
Approach to solve
Following is the approach to solve the problem:
We first c...
Published on January 08, 2023 10:20