联通国脉通信股份有限公司招聘笔试题
联通国脉通信股份有限公司招聘笔试题
1、写一个函数,实现二进制文件的转存,要求转存后的文件的开头是文件的长度
#include "stdio.h"
main()
{
FILE *in,*out;
char ch,infile[],outfile[];
int length;
printf("Enter the infile name:/n");
scanf("%s",infile);
printf("Enter the outfile name:/n");
scanf("%s",outfile)
if((in=fopen(infile,"r"))==NULL)
{
printf("cannot open infile/n");
}
if((out=fopen(outfile,"w"))==NULL)
{
printf("cannot open outfile/n");
}
、、、、、、
更多内容请下载附件