Welcome, guest | Sign In | My Account | Store | Cart

getcwd

C, 5 lines
1
2
3
4
5
 {
        char cwd[1024] = {0};
        getcwd(cwd, 1023);
        printf("current dir %s\n", cwd);
    }
Created by J Y on Thu, 23 Jul 2009 (MIT)
C recipes (32)
J Y's recipes (21)

Required Modules

  • (none specified)

Other Information and Tasks