- 4
Fill in the blanks to open and read from the file "myfile.txt".
Fill in the blanks to open and read from the file "myfile.txt". char buffer[200]; FILE* fptr = fopen ("myfile.txt", "r"); fgets(buffer, 20, fptr ); printf("%s", buffer); FILE* fptr = fopen ("info.dat", "rb"); fseek (fptr, 1*sizeof(item), SEEK_SET);
1 ответ
- 1
Is this some kind of test?