Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
#include <stdio.h> #include <unistd.h> #define PATHLEN 128 int main() { char path[PATHLEN]; getcwd(path, PATHLEN); printf("%s", path); return 0; } /* run: /home/project */