1 Star 0 Fork 0

bonsai/20155313

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myod1.c 434 Bytes
一键复制 编辑 原始数据 按行查看 历史
bonsai 提交于 2017-12-07 19:30 . myod advanced
#include "head.h"
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
int fd=-1;
int ret=-1;
int i=0;
char STR[1000]={0};
fd = open(argv[1], O_RDWR);
if(fd<0){
printf("Error!\n");
return -1;
}
ret=read(fd,STR,500);
if(ret<0){
printf("Error!\n");
return -1;
}
i=strlen(STR);
close(fd);
od(STR,i);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/bonsaiyoung/20155313.git
git@gitee.com:bonsaiyoung/20155313.git
bonsaiyoung
20155313
20155313
master

搜索帮助