1 2 3 4 5 6 7
#include <unistd.h> int main(int argc, char **argv) { char buf[10]; getcwd(buf, sizeof(buf) - 1000); return 1; }