Active editor window

I am seeing code learned in the c++ tutorial and noticed that outputs from your code appears in a window to the right of the editor window. Is it possilbe to obtain a live window to see the output of code as is runs when hitting 'run'.
I have a code written but have no idea how to see the output live anywhere. Your window shows the result of code after running you run the code Where did you get the live window that shows the output live.
If you mean this?

1
2
3
4
int main() {
    std::cout<<"Hello World!"<<std::endl;
    return 0;
}
Hello World!



that's a feature of the forum using formatting tags - it's not a live window.

More here on forum code tags. http://www.cplusplus.com/articles/z13hAqkS/
Topic archived. No new replies allowed.