Блог пользователя checkMate09

Автор checkMate09, история, 8 лет назад, По-английски

Hi,

today, while solving problems i faced a problem that the output is printed only when i terminate the program i deleted the project created another one with the same problem.

do any one know how to solve this matter ?

thanks.

  • Проголосовать: нравится
  • +6
  • Проголосовать: не нравится

»
8 лет назад, # |
Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

Probably, you have to flush your standard output. Use

cout << endl;

or

cout << flush;

or

fflush(stdout);

when you want to see your output data immediately.