若在程序中以追加写的方式打开文件file,则执行下列哪条语句?file若不存在则创建。
A: open("./file",O_RDONLY|O_CREAT|O_TRUNC)
B: open("./file",O_WRONLY|O_CREAT|O_APPEND)
C: open("./file"O_WRONLY|O_APPEND)
D: open("./file",O_RDWR|O_CREAT|O_TRUNC)
A: open("./file",O_RDONLY|O_CREAT|O_TRUNC)
B: open("./file",O_WRONLY|O_CREAT|O_APPEND)
C: open("./file"O_WRONLY|O_APPEND)
D: open("./file",O_RDWR|O_CREAT|O_TRUNC)
举一反三
- 函数open()中,打开不存在的文件,若文件存在则报错的参数flags是 A: O_CREAT B: O_APPEND C: O_TRUNC D: O_CREAT | O_TRUNC
- gcc哪个选项可以指定可执行文件名为file,不是默认的a.out: A: -o file B: -c file C: -O file D: -C file
- The sentences that follow the stress pattern “o O o o o O o o o ” are ( ). A: I took it to a watch repairer B: He didn't want to talk about it C: Let's open the other one D: He didn't think it interesting
- chmod ug=rwx , o=x file 和 chmod 661效果相同。
- 正则表达式用模式表达式时file*(.c|.o)匹配文件可以是file.c、file.o、,file但不匹配file.h、file.s等