fork download
  1. #include <unistd.h>
  2. #include <stdio.h>
  3. #include <errno.h>
  4.  
  5. int main() {
  6. char cwd[1024];
  7. if (getcwd(cwd, sizeof(cwd)) != NULL)
  8. fprintf(stdout, "Current working dir: %s\n", cwd);
  9. else
  10. perror("getcwd() error");
  11. return 0;
  12.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:11:4: error: expected declaration or statement at end of input
    return 0;
    ^
stdout
Standard output is empty