[Qt-creator] Cout not printing
Christian Kandeler
christian.kandeler at Nokia.com
Thu Jul 22 16:15:25 CEST 2010
On 07/22/2010 04:11 PM, ext Jothy wrote:
> Hi all,
>
> I am trying to print a string with cout, but it's not printing at all!
>
> I have included #include<iostream>
>
> then
>
> cout<<"printing";
>
> But, nothing prints, while the application compiles and runs fine.
Not a Qt Creator problem.
You have to flush the output:
std::cout << "printing" << std::endl;
Christian
More information about the Qt-creator-old
mailing list