//In the Name of ALLAH //Infinite Loop #include void main() { int i=0; for(;;) { printf("%d\n",i); i++; } }