← Back to Question ListSelect topics to narrow your question pool, then enable Random to jump to a random question matching your filters.
Topics:
What does T represent in the following code?
``cpp
template <typename T>
void print(T value) {
cout << value;
}
``