Home / CSE MCQs / C++ - MCQs :: Discussion

Discussion :: C++ - MCQs

  1.  What is the output of this program?

    #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;

    }


  2. A.
    100.01
    B.
    100.1
    C.
    compile time error
    D.
    none of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    In this program, we are getting the minimum number using conditional operator.


Be The First To Comment