You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cyberwow/cyberwow/native/hello.c

20 lines
265 B

#include <stdio.h>
#include <unistd.h>
int main()
{
printf("entering loop...\n");
setbuf(stdout, NULL);
int i = 0;
while (1) {
printf("Hello, World from C! %d\n", i);
fflush(stdout);
i++;
sleep(1);
if (i > 3) break;
}
return 0;
}