The Infinite Loop

#include <stdio.h>

int main () {

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

   return 0;
}

Comments

Popular posts from this blog

string copy in c

Structures as Function Arguments

Local Variables