steelydylanのブログ -2ページ目

steelydylanのブログ

ブログの説明を入力します。

counter.c
----------------
#include
int main(void){
FILE *fp;
int counter=0;
fp = fopen("counter.txt","r");
fscanf(fp,"%d",&counter);
counter++;
fclose(fp);
fp = fopen("counter.txt","w");
fprintf(fp,"%d",counter);
fclose(fp);
return 0;
}
------------------
これをコンパイルしてcounter.exeに

index.html
------------------
無題

------------------