For my algorithm, I would like to backtrack after going through all the chars in a file back to specific index char. For example, I have a file with ABCDEF
, I want to access in the order ABCDEF
then BCDEF
then CDEF
and so on. Is there a way I can do that with just fgetc and no string buffer?
FILE *file = fopen("temp.txt", "r");
int c;
while (1) {
c = fgetc(file);
if (feof(file)) {
break;
}
// Access and print char
}
You'll probably want to handle edge cases and error more cleanly than this, but...: