#include <stdio.h> #include <windows.h> int main() { while (1){ for (int i = 0; i< 10;i++){
printf("%d",i); Sleep(500); } printf("\n");
} }