ヒントありがとうございます。でも、プログラム内には全角は入っていないので、未だちょっと困っています。
・・・;_;。
実は今書いているのは、こういうプログラムで、文法(構文)に自信がないのです。T_T。
#include <stdio.h>
#define NUM 10000
int main (void)
FILE *fp;
char ch[NUM];
int i,j,sum;
int a[NUM];
fp = fopen("list.txt","r");
fp = fopen("newlist.txt","w");
if (fp==NULL){
printf("I could not open a file.\n");
return 1;
} else {
printf("I could open a file.\n");
}
a[NUM] = ch[NUM];
printf("%d\n",a[NUM]);
for(i=1; i<=NUM; i++){
sum += i;
}
printf("%f\n",(double)sum/200);
fclose(fp);
printf("I could close a file.\n");
return 0;
}
|