A-A+

阅读以下程序及对程序功能的描述 其中正确的是 #include<stdio.h> main(

2022-08-06 02:58:06 问答库 阅读 175 次

问题详情

阅读以下程序及对程序功能的描述,其中正确的是 #include<stdio.h> main() { FILE*in,*out; charch,infile[10],outfile[10]; printf("Enter the infile name:n"); scanf("%s",infile); printf("Enter the outfile name:n"); scanf("%s",outfile); if((in=foen(infile
A.程序完成将磁盘文件的信息在屏幕上显示的功能
B.程序完成将两个磁盘文件合二为一的功能
C.程序完成将一个磁盘文件复制到另一个磁盘文件中
D.程序完成将两个磁盘文件合并并在屏幕上输出请帮忙给出正确答案和分析,谢谢!

参考答案

正确答案:C

考点:程序,功能