若要“为读/写建立―个新的文本文件”,在fopen函数中应使用的文件方式是 ( )A.wB.wbC.w+D.wb+

若要“为读/写建立―个新的文本文件”,在fopen函数中应使用的文件方式是 ( )

A.w

B.wb

C.w+

D.wb+


相关考题:

若要用fopen函数打开一个文本文件,该文件要既能读也能写,则文件使用方式的字符串为( )。A.r+B.a+C.rb+D.'wb+"

若要打开A盘中user子目录下名为aaa.txt的文本文件进行读、写操作,下面符合此要求的函数调用是( )A.fopen("A:\user\aaa.txt","r")B.fopen("A:\\user\\aaa.txt","r+")C.fopen("A:\user\aaa.txt","rb")D.fopen("A:\\user\\aaa.txt","w")

若在fopen函数中使用文件的方式是"wb +",该方式的含义是( )A.为读/写打开一个文本文件B.为输出打开一个文本文件C.为读/写建立一个新的文本文件D.为读/写建立一个新的二进制文件

若要“向文本文件尾增加数据”,在fopen函数中应使用的文件方式是 ( )A.ab+B.aC.abD.a+

若要打开A盘中user子目录下名为aaa.txt的文本文件进行读、写操作,下面符合此要求的函数调用是( )。A.fopen("A:\user\aaa.txt","r")B.fopen("A:\\user\\aaa.txt","r=")C.fopen("A:\user\aaa.txt","rb")D.fopen("A:\\user\\aaa.txt","w")

若要打开A盘上user子目录下名为abc.txt的文本文件进行读、写操作,下面符合此要求的函数调用是_______A.fopen("A:userabc.txt","r")B.fopen("A:userabc.txt","r+")C.fopen("A:userabc.txt","rb")D.fopen("A:userabc.txt","w")

若要打开A盘上user子目录下名为abc.txt的文本文件进行读、写操作,下面符合此要求的函数调用是A.fopen("A:userabc.txt", "r")B.fopen("A:userabc.txt", "r+")C.fopen("A:userabc.txt", "rb")D.fopen("A:userabc.txt”, "w")

若要打开A盘上user子目录下名为abc.txt的文本文件进行读、写操作,下面符合此要求的函数调用是()A.fopen("A:userabc.txt","r")B.fopen("A:userabc.txt","r+")C.fopen("A:userabc.txt","rb")D.fopen("A:userabc.txt","w")

【单选题】若要为“读/写建立一个新的文本文件”,在fopen函数中应使用的文件方式是()A.“w+”B.“rt+”C.“wb+”D.“wt”