Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

# in c++

You can use '#' sign to get exact name of an argument passed to a macro:
#define what_is(x) cerr << #x << " is " << x << endl;
int variable = 376;
what_is(variable);
// prints "variable is 376"
Source by en.cppreference.com #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
4+2 =