The function isalpha() returns non-zero if its argument is a letter of the alphabet. Otherwise, zero is returned. char c; scanf( "%c", &c ); if( isalpha(c) ) ...
確定! 回上一頁