Linux提供了一个特殊的设备 /dev/tty ,该设备始终是指向当前终端或者当前的登录会话。

FILE* output = fopen("/dev/tty", "w");

 

//向终端写入字符串

fprintf(output, "%s\n", "world");

 

 

FILE* input = fopen("/dev/tty", "r");

 

//从终端读取单个字符

char c = fgetc(input);

posted on 2016-03-30 14:19  邶风  阅读(216)  评论(0编辑  收藏  举报