カレントディレクトリの変更

#include < unistd.h >

#include < stdio.h >
#include < stdlib.h >

int main()
{
    if (chdir("/tmp")< 0){
        perror("chdir");
        return 1;
    }
    system("pwd");
    return 0;
}