#include <stdio.h>

void printHW(int count);

int main() {
    printHW(5);
    return 0;
}
//recursive function
void printHW(int count) {
    if(count == 0)
{
    return; 
}
    printf("Hello world!\n");
    printHW(count - 1);
} 

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: