代码示例:(标识:652bcd02e2483)
#include <stdio.h>
 
int main (){

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

   return 0;
}
运行结果: