#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main() {
int *list = malloc(sizeof(int));
A:
if (*(list+0) < 5) {
write(1,"Hello world!\n",14);
*(list+0)+=1;
goto A;
}
free(list);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: