Advertisements
Advertisements
Question
Write a C++ program to find the smallest of four given integers using function min( ) that returns the smallest of four given integers. The function prototype is as below int min (int, int, int, int).
Solution
# include <iostream.h>
# include <conio.h>
int min(int, int, int, int);
void main()
{
int w, x, y, z;
cout <<"Enter four integers";
cin >> w >> x >> y >> z;
cout <<“The minimum no’ = <<min (w, x, y, z) << endl;
}
int min(int n1, int n2, int n3, int n4)
{
int min = n1;
if (n2 < min) min = n2;
if (n3 < min) min = n3;
if (n4 < min) min = n4;
return min;
}
shaalaa.com
C++ Programming
Is there an error in this question or solution?