...

/

Quiz: General STL Features

Quiz: General STL Features

Test your understanding of general STL features.

We'll cover the following...
Technical Quiz
1.

What is the output of the following code?

template<typename T>
const char * f(const T a) {
    return typeid(T).name();
}
int main() {
    cout << format("T is {}\n", f("47"));
}
A.

T is int

B.

T is long

C.

T is char const *

D.

T is string


1 / 7
...