今度はPCから何かを受けてみる。openモード(r+、w+、a+)の違いがわからない。
main(){ int *fp = fopen("stdaux", "a+"); char sute[100]; while(1){ fscanf(fp, "%s", sute); printf("%s\n", sute); } /*fclose(fp);*/ }
今度はPCから何かを受けてみる。openモード(r+、w+、a+)の違いがわからない。
main(){ int *fp = fopen("stdaux", "a+"); char sute[100]; while(1){ fscanf(fp, "%s", sute); printf("%s\n", sute); } /*fclose(fp);*/ }