Good afternoon, I would like to know if in C you have to do the following macro definition:
#define EXEMPLO(1) a * c + b
#define EXEMPLO(2) a + b + c
#define EXEMPLO(3) b * c + a
And then use indexing in some code for example
for (x=1,x<4,x++)
{
EXEMPLO(x);
}