fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <errno.h>
  4.  
  5. int main(void) {
  6. printf("%s\n", strerror(ENOENT));
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
No such file or directory