全国计算机等级考试C语言考试程序设计题(6)
在考生文件夹下,要求程序PROG.C的功能是: 求字符串的长度并输出。 例如,当字符串1为"This Is a c Program" 则应输出:Result is: 19
#include int fun(char str[]) { /***********begin***********/
} void main() { void NONO( ); //函数声明 char str1[80]="This Is a c Program"; int count; printf("String is: %s ",str1); count=fun(str1); printf("Result is: %d ",count); NONO( ); }
void NONO( ) { FILE *fr,*fw; int i,j; char s1[80]; fr=fopen("PROGIN.DAT","r"); fw=fopen("PROGOUT.DAT","w"); for(i=1;i<=5;i++) { fscanf(fr,"%s",s1); fprintf(fw,"%d ",fun(s1)); } fclose(fr); fclose(fw); } 相关资料 |