I am looking in to C code it is written as below
#define MAKE_TYPE(myname) \
typedef int myname ## Id; \
what does ## do in above statement.
Thanks!
|
|
The From 16.3.3 (The ## operator) :
|
|||||
|
|
icecrime is correct, but something important to point out in the definition is that the tokens need to be valid preprocessing tokens. Examples:
|
|||||
|