A.記錄文件 B.流式文件 C.普通文件 D.設(shè)備文件
A.數(shù)據(jù)文件的改動(dòng)不引起程序的改動(dòng)——程序與數(shù)據(jù)分離 B.不同程序可以訪問同一數(shù)據(jù)文件中的數(shù)據(jù)——數(shù)據(jù)共享 C.能長(zhǎng)期保存程序運(yùn)行的中間數(shù)據(jù)或結(jié)果數(shù)據(jù) D.以上都不正確
A.#include< stdio.h>FILEfp;fp=fopen(""file1.c"",""W"") B.#include< stdio.h>FILE fp;fp=fopen(""file1.c"",""w"") C.#include< string.h>FILEfp;fp=fopen(""file1.c"",""w"")