adplus-dvertising
frame-decoration

Question

What is the output of this program?
    #include <iostream>
    using namespace std;
    template <typename T, int count>
    void loopIt(T x)
    {
        T val[count];
        for(int ii = 0; ii < count; ii++)
        {
            val[ii] = x++;
            cout <<  val[ii] << endl;
        }
    };
    int main()
    {
        float xx = 2.1;
        loopIt<float, 3>(xx);
    }

a.

2.1

b.

3.1

c.

4.1

d.

2.1 3.1 4.1

Answer: (d).2.1 3.1 4.1

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?