fork download
  1. #include <stdio.h>
  2.  
  3. int swapmade = 0;
  4.  
  5. int main(void)
  6. {
  7. int i;
  8. for (i = 0; i < 100; i++) {
  9. swapmade++;
  10. }
  11. printf("%d\n", swapmade);
  12. return 0;
  13. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
100