โ Back to Functions
Question 410
Default Argument Greeting
Default Argument Greeting
Write a functionvoid greet(string name = "Guest")that printsHello,followed by the name and a!. Callgreet()with no argument, then callgreet("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.