CJCoding With Joseph

Default Argument Greeting

Write a function void greet(string name = "Guest") that prints Hello,  followed by the name and a !. Call greet() with no argument, then call greet("Alice"). The output must be exactly:

Hello, Guest!
Hello, Alice!

A default argument is used when the caller omits that argument.

Expected Output:

Hello, Guest!
Hello, Alice!
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.