首页 > TAG信息列表 > getPutChar
C getchar putchar and break when press escape key
//main.c#include <stdio.h> void getPutChar(); main() { getPutChar(); } void getPutChar() { char c; while((int)(c=getchar())!=27) { putchar(c); } } Compile cc main.c -o h1 Run ./h1 //main.c #include <