CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #54

Template Function Output

easyTemplates

What is the output of the following program? ``cpp #include <iostream> using namespace std; template <typename T> void printDouble(T x) { cout << x * 2 << "\n"; } int main() { printDouble(5); printDouble(2.5); } ``