What is the term used to define ## in c programming?
Term defination
Collapse
X
-
Tags: None
-
Originally posted by dtimes6#define MAX_MODE_##A MODE
MODE is now MAX_NODE_A
#define MODE MAX_MODE_##A
## is the concatination operator for use in #defines, your post suggests that to you it has some other meaning in a different language, if so you better tell us that meaning so we can tell you how to achieve the same thing in CComment
Comment