I have been experimenting with C in a cgi environment. What a difference from php.

Anyway, I'm wondering what's the best way to print a large amount of text? The best I have been able to come up with is:

Code:
puts("Some large amoun tof text"
"And even more text"
"and still more");
Is this the best way?