#include <stdio.h>

int main() {
    int i, n;
    
    printf("Enter a number greater than 4: ");
    scanf("%d", &n);
    
    for (i = 0; i <= n; i++) {
        // Loop body
    }
    do{
    // Code block to be executed
    printf("%d\n", i);
    i++;
    printf("hi\n");
    }
    while (i<=10);
    return 0;
}

Embed on website

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