CJCoding With Joseph

Void Function to Greet

Write a void function named greet that takes no parameters and prints exactly this line:

Hello, welcome!

Call greet() from main. A void function returns nothing; it just does its work.

Expected Output:

Hello, welcome!
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.