0

I recently downloaded CLion to use with C++ and it's working fine, I just wanted to know if/how I could view std::cout. If not in the CLion output console, then maybe in a separate terminal window using the CMakeLists.txt file? Again, my code is building fine, I just want to know how/if I can view the output (similar to what I'd be able to do in Eclipse, XCode, or even Sublime).

semore_1267
  • 1,327
  • 2
  • 14
  • 29
  • For linux system you can do this http://stackoverflow.com/questions/36675012/how-to-execute-a-clion-program-in-gnome-terminal/43440347#43440347 – GlacierSG Apr 16 '17 at 22:38

1 Answers1

1

You'll see it in the "run" tab, not the "terminal" tab

enter image description here

From the dropdown box at the top, make sure you have the correct target selected and hit the play button.

learnvst
  • 15,455
  • 16
  • 74
  • 121