표준입력,standard_input

C에서 표준입력파일디스크립터,file_descriptor (or 파일서술자) { |=,FD FD https://ko.wikipedia.org/wiki/파일_서술자 WpEn:File_descriptor = https://en.wikipedia.org/wiki/File_descriptor } number는 <unistd.h>STDIN_FILENO
via https://viewsourcecode.org/snaptoken/kilo/02.enteringRawMode.html (standard input에서 한 바이트씩 읽는 소스)

보면 0으로 정의되어 있다.

해당 stream은 stdin
이며
fileno(stdin) == STDIN_FILENO 관계가 있다.

int getc(FILE *stream);
스트림에서 한 문자,character를 읽ㅓㅇ온다.







RENAMETHISPAGE to include stdin ? 표준입력,standard_input,stdin 은 어떤지?