fork download
  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. int main()
  5. {
  6. char buf[80];
  7. printf("input folder address:");
  8. scanf("%s", buf);
  9. printf("%d\n", chdir(buf));
  10. return 0;
  11. }
Success #stdin #stdout 0s 5016KB
stdin
Standard input is empty
stdout
input folder address:-1