I am currently trying to get the hang of the debugger in Xcode while I am trying to learn C++. I\'m coming across a problem where the debugger is not showing any cou
You need to terminate your output line, e.g.:
std::cout << x << "\n";
or
std::cout << x << std::endl;
Your output should show up after your have written a line terminator character as in either of the statements above.