6
可能重複:
Why does printf not flush after the call unless a newline is in the format string?如何在C睡覺
當我運行像
for (i = 1; i <= 10; i++) {
sleep(1);
printf(".");
}
那麼我會想到的是每秒10次一個點。我得到的是十秒鐘後的十個點。爲什麼會這樣,以及如何讓程序每秒(或不同的時間間隔)實際打印一個點(或做其他事情)?
_how在C_睡覺?嘗試'for(int i = 0; i
Bitterblue