fseek(exsist, start, end);
while(count < end)
{
if(feof(exsist)) break;
c = fgetc(exsist);
printf("%c",c);
if(feof(exsist)) break;
++count;
In theory I feel like this should print character by character until either eof or the intended end. Yet I am getting nothing printed to the terminal. I have been opening the file because I have a check above if it doesn’t see it.
start? What isend? What iscount?endis the same asSEEK_ENDetc.