Feedback in middle of cout in terminal
-
Hey! I'm using Qt Creator 5.12.2 (have to use that version for the class I'm taking) on Windows and for some reason Qt is printing the code feedback in the middle of the cout print? It does this everytime, no matter the file. A bit distracting. :D Any ideas how to fix this? :)

-
"Fixed" this with unticking the "use internal terminal" setting in the terminal settings!
-
Hey! I'm using Qt Creator 5.12.2 (have to use that version for the class I'm taking) on Windows and for some reason Qt is printing the code feedback in the middle of the cout print? It does this everytime, no matter the file. A bit distracting. :D Any ideas how to fix this? :)

Race condition between your
coutoutput and the internal QtCreator thread which writes the information to console/terminal.Press Ctrl + R to run your program couple times, and you should be able to see the correct order.
(not the cleanest solution).Better, as you wrote above, use the console output pane or the external console window for your output.