文字数のカウントをするプログラムをyahooなどで調べてみたのですがうまく動きません。
該当するソースコード
c
1#include <stdio.h> 2#include <stdlib.h> 3#include <string.h> 4 5int main(void){ 6 int count; 7 char ch[256]; 8 FILE *fn; 9 fn=fopen("memo.txt", "w"); 10 fprintf(fn, "abcdefg"); 11 while(ch[count]!=EOF){ 12 ch[count] = fgetc(fn); 13 count++; 14 } 15 fclose(fn); 16}
こうすると
test.c(11) : error : Invalid pointer or array access.
となります
実際のプログラム画面
![
実行画面
↑のようになります
実行環境は
ipad 第三世代
アプリケーション
Mobile C
です。
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/12 08:12
2021/12/12 08:19
2021/12/12 10:50