Hello
I am trying to write data to a file.
When writing "STEPHEN", only STEP is written, can anyone help?
below is my code
fp = fopen(filename, "rb+" );
fseek(fp, final_seek_pos, SEEK_SET );
fwrite(update_record, sizeof(update_record),1 ,fp );
fclose(fp);