Vidyalelo
C++ Programming · Q167

Functions and Procedures in C++

Programming · C++ Programming · question 167

Q167

What will be the output of the following C++ code? #include using namespace std; #define MIN(a,b) (((a)<(b)) ? a : b) int main () float i, j; i = 100.1; j = 100.01; cout <<"The minimum is " << MIN(i, j) << endl; return 0;

A.
100.01
Answer
B.
100.1
C.
compile time error
D.
100

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board