Description

接收stdin 本身是函數 開銷較大

Example

#include <stdio.h>


int main() {
  int a = fgetc(stdin);
  printf("%c", a);
}