In C, I write one line of data in a file and then another, and then I want to go back to the end of the first line and write without affecting the rest of the data.Is there any methods to write at the end of a line directly without copy the line first.
i write two line as follows. such as: line1:abc, line2:def,
then, i want to go back to the end of the line1 to write new data. line1:abc,abc, line2:def,
the new data wouldn't affect other data.