+ 3
It appends two tokens together. Example: #define PASTE(name1, name2) \ name1##name2 int x1 = 1; int x2 = 2; int x3 = 3; printf("%d", PASTE(x, 3)); //3
29th Jun 2019, 5:59 PM
Airree
Airree - avatar