Examveda

What will be the output of the following C++ code?
#include <iostream>
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

B. 100.1

C. compile time error

D. 100

Answer: Option A


Join The Discussion

Related Questions on Functions and Procedures in C plus plus