Is this going to cause me a portability problem?
Purpose: make it easy for me to write my 'help' text block in the .cpp file,
just as I wish it to be output 'formatted-ly' to the user upon demand while
the program is running.
#include <iostream>;
using namespace std;
int main() {
cout<<"these \
lines\n\
are \
much \
longer\n\
than \
this.\n";
return 0;
}
(Or, any better suggestion, without more code?)
Thanks
--
Peace
JB
jb@tetrahedrave rse.com
Web: http://tetrahedraverse.com
Purpose: make it easy for me to write my 'help' text block in the .cpp file,
just as I wish it to be output 'formatted-ly' to the user upon demand while
the program is running.
#include <iostream>;
using namespace std;
int main() {
cout<<"these \
lines\n\
are \
much \
longer\n\
than \
this.\n";
return 0;
}
(Or, any better suggestion, without more code?)
Thanks
--
Peace
JB
jb@tetrahedrave rse.com
Web: http://tetrahedraverse.com
Comment