How to check the preprocessing results? For example, let's say I have the following code:
#define CONCATENATE(X, Y) X ## Y
#define STRING_1 First
#define STRING_2 Second
#define STRING_3 CONCATENATE(STRING_1, STRING_2)
Is there any way to make sure it STRING_3will be expanded to FirstSecondlater in the program?
Maxpm source
share