#include <stdio.h>
#include <stdlib.h>
int main() {
    int *LET = malloc(2*sizeof(int));
    while (*(LET + 1) < 5) {
        printf("Hello world!\n");
        *(LET+1) += 1;
    }
    free(LET);
    return 0;
}

Embed on website

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