T
Tatu Portin
Is there any convenient way to program text-handling routines in C?
For example, I have a text file and I want to remove every other line, and then
write the output.
Or should I read tutorials about string fuctions and exercise to become an
expert in:
for (i = 0 ; i < sz ; i++) printf ("%c", buf);
kind of lines?
For example, I have a text file and I want to remove every other line, and then
write the output.
Or should I read tutorials about string fuctions and exercise to become an
expert in:
for (i = 0 ; i < sz ; i++) printf ("%c", buf);
kind of lines?