반응형
int getchar(void)
#include <stdio.h> /* * A subroutine version of the macro getchar_unlocked. */ #undef getchar_unlocked int getchar_unlocked(void) { return (getc_unlocked(stdin)); } /* * A subroutine version of the macro getchar. */ #undef getchar int getchar(void) { return (getc(stdin)); }
반응형