CJCoding With Joseph

Function: Print a Line N Times

Write a void function printLines(int n) that prints Hi on its own line n times. Call it with 3. The exact output (each line ends with a newline, including the last) is:

Hi
Hi
Hi

Use a loop and printf("Hi\n").

Expected Output:

Hi
Hi
Hi
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.