Linux--对同一个文件分别执行r和w指令,其得到的fd一样吗?

代码:

#include 
#include 
#include 
#include 

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);
}

运行结果:

 

你可能感兴趣的:(Linux,linux,算法)