当前位置: 技术问答>linux和unix
关于程序的问题。
来源: 互联网 发布时间:2016-03-12
本文导语: #include #include #include #include #include int main(int argc,char* argv[]) { int fd; int file_stat; if(argc!=2){ printf("Usage: %s filenamen",argv[0]); return 1; } fd=open(argv[1],O_RDONLY); if(fd==-1){ perror("Cannot open the file"); return 1;...
#include
#include
#include
#include
#include
int main(int argc,char* argv[])
{
int fd;
int file_stat;
if(argc!=2){
printf("Usage: %s filenamen",argv[0]);
return 1;
}
fd=open(argv[1],O_RDONLY);
if(fd==-1){
perror("Cannot open the file");
return 1;
}
file_stat=fcntl(fd,F_GETFL);
if(file_stat
#include
#include
#include
#include
int main(int argc,char* argv[])
{
int fd;
int file_stat;
if(argc!=2){
printf("Usage: %s filenamen",argv[0]);
return 1;
}
fd=open(argv[1],O_RDONLY);
if(fd==-1){
perror("Cannot open the file");
return 1;
}
file_stat=fcntl(fd,F_GETFL);
if(file_stat