fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x = 1;
  5. for ( x = 1; x == 1; x = x - 1) {
  6. puts("In the loop.");
  7. }
  8. return 0;
  9. }
Success #stdin #stdout 0s 4564KB
stdin
Standard input is empty
stdout
In the loop.