This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Using macros with variables declared on #define

Any ideas why it's impossible to compile that simple code?

#define AB_VALUES  2,3
#define Add(a,b)  a+b

void main(void)
{
 int c;
 c = Add (AB_VALUES);
}

Parents Reply Children
No data