Stringify C preprocess

♀尐吖头ヾ 提交于 2019-11-29 08:12:49

To stringify a #define you need to use a two-step approach:

#define _STRINGIFY(s) #s
#define STRINGIFY(s) _STRINGIFY(s)

...

#define SEED 123

...

const char * pszSeed = STRINGIFY(SEED); /* 'pszSeed' would point to "123" form here on. */

If you only want to use one character simply access it via *pszSeed or pszSeed[0].

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!