I write #define macros
I want to have a function or a macro that prints its name when I give it a value
for example :
`
#define ten 10
string printName(int value);
int main()
{
cout<<printName(10);
}
`
output : ten
A solution or code sample