...

/

Quiz: Introduction to C++

Quiz: Introduction to C++

Quiz yourself on C++ basics.

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

What replaces the handcrafted linked list using string_elem_t?

struct string_elem_t {
 const char* str_;
 string_elem_t* next_;
};
A.

Machine code

B.

The std::string class

C.

std::forward_list

D.

Pointer


1 / 5
...