Hash symbol after define macro?

4k Views Asked by At

What does the '#' symbol do after the second define? And isn't the second line enough? Why the first one?

#define MAKESTRING(n) STRING(n)
#define STRING(n) #n
2

There are 2 best solutions below

0
user7860670 On BEST ANSWER

This is stringize operation, it will produce a string literal from macro parameter, e.g. "n". Two lines are required to allow extra expantion of macro parameter, for example:

// prints __LINE__ (not expanded)
std::cout << STRING(__LINE__) << std::endl;
// prints 42 (line number)
std::cout << MAKESTRING(__LINE__) << std::endl;
1
mfkw1 On

Hash symbol takes macro argument into a c-string. For example

#define MAKESTRING(x) #x
printf(MAKESTRING(text));

will print text

And first line is only alternative name for this macro.