void printArray(char * array, FILE * fp1, int MAX_CHAR)
{
int i; /* initializing i */
FILE *fp1
fp1 = fopen("Array.txt","r+"); /* open the file in append mode */
for (i=0; i<MAX_CHAR; i++) /* using for loop */
fprintf(fp1,"%c",*(array+i)); /* writing the array */
fclose(fp1); /* close the file pointer */
return 0;
}
私はCに慣れていないので、誰かがこれを正しくやったかどうか教えてもらえますか