跳频的作用()
A、克服多径衰落
B、提高通话质量
C、使系统可以用更紧密的频率复用方案
D、省电
参考答案:A, B, C
下列哪项不是扩张器的组成部分()。
A、扩张囊
B、导管栓
C、连接导管
D、连接栓
E、注水阀门
C盘中P1.c.txt文件的内容为:abcde。A盘中P1.c.txt为空文档。 #include<stdio.h> #include<stdlib.h> main() FILE *f1,*f2; int k; if((fl=fopen("C:\\p1.c.txt","r"))==NULL) printf("can not open file! \n");exit(0); if((f2=fopen("A:\\p1.c.txt","w"))==NULL) printf("can not open file! \n");exit(0); for(k=1;k<=500;k++) if(feof(f1))break;fputc(fgetc(f1),f2); printf("成功实现复制"); fclose(f1); fclose(f2);