This is just out of curiosity! Does anyone know what is the maximum number of characters that a line of code can have?
EDIT: Added more details.
Is it possibly possible to make two lines become one? .... This seems pretty odd, I dont know how to explain it, but maybe an example would be useful:
Suppose I have the following piece of code
#define A cout << "Hello,"
<< "world";
It obviously would not be syntactically legal to do something like that.
But, of course
#define A cout << "Hello World";
would do! So back to the question, is there any possible way to "connect" two lines of code and make them become one?