早教吧 育儿知识 作业答案 考试题库 百科 知识分享

C++关于函数open比如想openE:\text\Debug\下的abc.txt文件intfd=open(E:\text\Debug\abc.txt,ORDONLY|OBINARY,0);intfd=open("E:\text\Debug\abc.txt",ORDONLY|OBINARY,0);

题目详情
C++ 关于函数open
比如想open E:\text\Debug\下的abc.txt文件
int fd = open(E:\text\Debug\abc.txt,O_RDONLY | O_BINARY,0);
int fd = open("E:\text\Debug\abc.txt",O_RDONLY | O_BINARY,0);
▼优质解答
答案和解析
FILE *fd = fopen("E:\\text\\Debug\\abc.txt","rb");