代码:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int main()
{
int fd=open("log.txt",O_WRONLY|O_CREAT|O_TRUNC);
printf("fd_w: %d\n",fd);
fd=open("log.txt",O_RDONLY|O_CREAT|O_TRUNC);
printf("fd_r: %d\n",fd);
}
运行结果: