文字配列がありchar input[11];
ます。私はループを持っています:
do {
is >> input; // is is an input stream defined by istream& is
} while (something)
// works fine
do {
is.getline(input, 11);
} while (something)
/* i enter 10 digits and press enter, cursor still blinks,
i enter another value and finally it proceeds to the next piece of code */
2 つの違いは何ですか。一方は 11 文字すべて (10 桁 + 入力) を読み取り、もう一方はぶら下がったままになっているのはなぜですか?