First page Back Continue Last page Overview Image

The Infinite Loop

#include<stdio.h>

int main () {

for( ; ; )

{

printf("This loop will run forever.\n");

}

return 0;

}