fork download
  1. #include <stdlib.h>
  2.  
  3. // Number to guess: How many iterations of
  4. // this loop can we go through in a second?
  5.  
  6. int main(int argc, char **argv) {
  7. int NUMBER, i, s;
  8. NUMBER = atoi(argv[1]);
  9.  
  10. for (s = i = 0; i < NUMBER; ++i) {
  11. s += 1;
  12. }
  13.  
  14. return 0;
  15. }
Runtime error #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty