#include #include int main() { char s[100]; printf("%s\n", getcwd(s, 100)); chdir(".."); printf("%s\n", getcwd(s, 100)); return 0; }