- 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);

20th Nov 2020, 1:04 PM
Jason Chew
Jason Chew - avatar
1 Respuesta
- 1
Is this some kind of test?
29th Nov 2020, 9:45 PM
OverdrivedProgrammer