#include <stdio.h>
#define paster( n ) printf_s( “token” #n ” = %d”, token##n )
int token9 = 9;
int main()
{
paster(9);
/*
This macro yields the following code:
printf_s( “token” “9” ” = %d”, token9 );
*/
}
计算机,游戏,摄影,AV,生活
#include <stdio.h>
#define paster( n ) printf_s( “token” #n ” = %d”, token##n )
int token9 = 9;
int main()
{
paster(9);
/*
This macro yields the following code:
printf_s( “token” “9” ” = %d”, token9 );
*/
}