15.07.2016, 20:39
Backslash is used to "join" the code from the next line. Few examples:
or
So using it in your initial code somehow tries to continue the comment to the next line which is invalid.
Definitions are used to be more user-friendly instead of memorizing hexadecimals for each color.
PHP код:
new string[] = "This is some \
string";
PHP код:
#define strcpy(%0,%1) \
strcat((%0[0] = EOS, %0), %1)
Definitions are used to be more user-friendly instead of memorizing hexadecimals for each color.