I am trying to compare to a defined constants in C, and I have simplified my program to the following:
#include \"stdio.h\" #include \"stdlib.h\" #define INV
Change macro
from:
#define INVALID_VALUE -999;
to
#define INVALID_VALUE -999
Bye