1 #include <stdio.h> 2 3 int main() { 4 while(1){ 5 printf("\033[43;37mHello, World!\033[0m\n"); 6 sleep(1); 7 } 8 return 0; 9 }