做
介紹一個 do-while 迴圈 。
// Gets the next non-whitespace character from standard input
char read_char() {
char c;
do {
c = getchar();
} while (isspace(c));
return c;
}
介紹一個 do-while 迴圈 。
// Gets the next non-whitespace character from standard input
char read_char() {
char c;
do {
c = getchar();
} while (isspace(c));
return c;
}