← Back to Question ListSelect topics to narrow your question pool, then enable Random to jump to a random question matching your filters.
Topics:
Why would you declare a function parameter as const string& rather than just string?
``cpp
void print(const string& s);
``