当前位置: 代码迷 >> C语言 >> 请教!!!APUE上的一个简单程序
  详细解决方案

请教!!!APUE上的一个简单程序

热度:306   发布时间:2008-06-02 17:38:40.0
请教!!!APUE上的一个简单程序
提示: 作者被禁止或删除 内容自动屏蔽
2008-06-02 09:38:40
lylylyl
该用户已被删除
  得分:0 
提示: 作者被禁止或删除 内容自动屏蔽
2008-06-02 13:44:53
VxWorks

来 自:WindRiver
等 级:论坛游民
威 望:6
帖 子:859
专家分:68
注 册:2007-11-24
  得分:0 
认真看书,另外在你了解终端前不要对STDIN_FILENO和STDOUT_FILENO进行操作。你可以玩常规文件。

Data is read from an open file with the read function.

#include <unistd.h>
ssize_t read(int filedes, void *buf, size_t nbytes);

Returns: number of bytes read, 0 if end of file, 1 on error

If the read is successful, the number of bytes read is returned. If the end of file is encountered, 0 is returned.
----------------解决方案--------------------------------------------------------