Quiz: Introduction to C++
Quiz yourself on C++ basics.
We'll cover the following...
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
Question 1 of 50 attempted
Access this course and 1400+ top-rated courses and projects.