fork(1) download
  1. #include <stdlib.h> // atoi()
  2.  
  3. int main(int argc, char* argv[]) {
  4. return argc > 1 ? atoi(argv[argc-1]) : 0;
  5. }
  6.  
Success #stdin #stdout 0s 1716KB
stdin
Standard input is empty
stdout
Standard output is empty