How to split lines of code

Hello,

How do I split a line of code so that it is better readable? Thank you!
Huh? What line of code?
Uhm... By splitting it? Sorry, either I don't understand what you're asking, or your question is it's own answer.
C++ programs are stream based not line based. You can split them wherever you have white-space (not in a literal) and the compiler won't care.
Google around "C++ style guides" and the like.
Oh sorry, that was a stupid question. I should have given it more thought. I forgot, that in C++ you can just continue in the new line without problems.
Topic archived. No new replies allowed.