CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C++ Quiz #11

Default Function Argument

mediumFunctions

What is the output of this code?

📄 Code

1#include <iostream>
2using namespace std;
3 
4void greet(string name = "World") {
5 cout << "Hello, " << name << "!" << endl;
6}
7 
8int main() {
9 greet();
10 greet("Alice");
11 return 0;
12}