等同於
fseek ( stream , 0L , SEEK_SET );
=============================================
#include=============================================#include int main() { FILE *fp=fopen("/home/diousk/test/aaa","r+"); char str[20]; fscanf(fp,"%s",str); printf("\nthe content is %s\n",str); rewind(fp); fprintf(fp,"%d",atoi(str)+1); fclose(fp); return 0; }
沒有留言:
張貼留言