18.01.2013, 11:32
That's correct. Just like the \ - If you use that one only, it indicates that the code is continueing on the line below (eg.):
So if you want to use the slash \, you must do this double slash;
Kind Regards,
Kwarde
Код:
#define something(%0, %1) printf("%d", (%0 + %1)); print("I just calculated something :D"); //Is the same as: #define something(%0, %1) printf("%d", (%0 + %1)); \ print("I just calculated something :D");
Код:
print("This is a slash: \\"); //Will print: This is a slash: \
Kwarde