Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++, xcode and terminal, absolute basics

Tags:

c++

xcode

I have an Xcode project, just the standard hello world app that comes with xcode for c++. I hit build and run, it runs, it completes, I see nothing.

How do I get this to open up in terminal?

like image 244
Michael Watson Avatar asked Jun 15 '11 21:06

Michael Watson


1 Answers

shift+cmd+Y brings up the debugger and console. You can see all the output there. Alternatively, you can choose View from the menu bar and click 'Show Debug Area'. This debug area shows the output of your program just like Terminal.

like image 108
kmikael Avatar answered Sep 30 '22 01:09

kmikael