[Resolved] Dev C ++ debugging mode press Next stuck (breakpoint statement cout)

When using Dev C ++ debug carried out today, found that when you run into cout statements, press Next to no response.
Statement to cout << a << endl;
check several data failed to find a solution.
Later in Baidu know or see the solution

The original Dev C ++ endl will encounter this problem, change the '\ n' on it.
cout << a << ‘\n’;

Published 18 original articles · won praise 3 · views 20000 +

Guess you like

Origin blog.csdn.net/hyluglare/article/details/104400521