Printing RSS on printer

I do not recommend you use the String class, because that is likely to fragment memory.

Say you have a maximum line size of 100 bytes.

You could have:

char myLine [101];  // extra byte for the trailing 0x00

Read into myLine from your RSS feed. Print it. Repeat.