Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
template<typename T> 
inline T square(T x)
{
    T result;
    result = x * x;
    return result;
};
int main()
{
    int i, ii;
    float x, xx;
    double y, yy;
    i = 2;
    x = 2.2;
    y = 2.2;
    ii = square(i);
    cout << i << " "  << ii << endl;
    yy = square(y);
   cout << y << " " << yy << endl;
}

A. 2 4
2.2 4.84

B. 2 4

C. error

D. 3 6

Answer: Option A


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it