I have a question. When I make a #define VAR 5
in c, is it necessary to define the type? like: #define VAR (unit_8) 5
I imagine, what is going on when I make this C code.
#define VAR 15000
void foo(uint_8);
void foo(uint_8 c) { c++; }
int main() {
foo(VAR);
return 0;
}