#include int main() { int i; i=0; while (1) { if (i>=100000) i=0; printf("=======================================%d\n",i); i=i+1; } return 0; }