#include #include using namespace std; int main(){ char actual_space_for_a_string[128]; char *buffer = actual_space_for_a_string; getcwd(buffer, 128); cout << "We're in " << buffer << endl; return 0; }