I have the following statement in a piece of code:
#define STRINGIFY(s) #s
What does this do to s, if s is an integer such as 96? Is this a conversion to a string literal, such as "96"?
I have the following statement in a piece of code:
#define STRINGIFY(s) #s
What does this do to s, if s is an integer such as 96? Is this a conversion to a string literal, such as "96"?