c_cpp 块阅读
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 块阅读相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/uio.h>
int main(void)
{
char buf[80];
// read
ssize_t size = read(fileno(stdin), buf, sizeof(buf));
if (size == -1) {
perror("read()");
exit(EXIT_FAILURE);
}
printf("%s", buf);
return EXIT_SUCCESS;
}
以上是关于c_cpp 块阅读的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 代码块的变量范围
c_cpp 遥感图像拼块处理框架
c_cpp 用于阵列旋转的块交换算法
c_cpp 在C中读写二进制数据块
c_cpp Duff的设备 - 在C中快速复制块
c_cpp 这是数据块系统的原型,以动态二进制格式存储数据