โ Back to Functions/Methods
Question 286
Function: Print a Line N Times
Function: Print a Line N Times
Write avoidfunctionprintLines(int n)that printsHion its own linentimes. Call it with3. The exact output (each line ends with a newline, including the last) is: Hi Hi Hi Use a loop andprintf("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.