How to split long lines of code in c++?

后端 未结 5 849
盖世英雄少女心
盖世英雄少女心 2020-12-25 10:43

I need to make sure none of the lines in my code exceeds a a certain length.

Normally I separate lines where there\'s a comma or another suitable break.

How

5条回答
  •  既然无缘
    2020-12-25 11:40

    cout << "Error:This is a really long error message "
        "that does not exceed the maximum permitted length.\n";
    

提交回复
热议问题