fgetc 使用說明Description接收stdin 本身是函數 開銷較大Example#include <stdio.h> int main() { int a = fgetc(stdin); printf("%c", a); }