#include "printWithWrap.hh" int main(int argc, char *argv[]) { PrintWithWrap("Here is a simple program that uses PrintWithWrap. "); PrintWithWrap("It makes multiple calls to PrintWithWap with long strings and never outputs an explicit newline. "); PrintWithWrap("However, when you run, the output is wrapped at the right margin! "); PrintWithWrap("All done!\n"); return 0; }