Tengo problemas con la función fseek, hay veces que no me funciona y no sé porque...
Código C:
Ver original#include <stdio.h>
int main(){
FILE * h;
h
=fopen("testseek.txt","wb"); //abrir w fseek(h
,0L, SEEK_SET
); //funciona fseek(h
,20L, SEEK_END
); //funciona h
=fopen("testseek.txt","a+b"); //abrir a+ fseek(h
,0L, SEEK_SET
); //no funciona =( return 0;
}
Saludos y gracias de antemano.