Examveda

What will be the output of the following C++ code?
#include <iostream>
#include <string>
using namespace std;
template<typename T>
void print_mydata(T output)
{
    cout << output << endl;
}
int main()
{
    double d = 5.5;
    string s("Hello World");
    print_mydata( d );
    print_mydata( s );
    return 0;
}

A. 5.5
Hello World

B. 5.5

C. Hello World

D. Hello

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