How's coding text specification when it needs to be broken to the next line by adding \ i.e. how is it if there're some \ characters in the will-be-broken long code line itself, how compiler way of parse ?
If the very last character in a line (right before the line-break) is a \, then the C/C++ pre-processor discards that \ character as well as the following line-break, i.e. it will treat the current line and the next line as one "contiguous" line; any other appearance of the \ characters simply remains as-is.