T
TheFlyingDutchman
Compiling this program with Tiny C version 0.9.25 :
_________________________________________________________________
const int FALSE = 0;
int Debugging = FALSE;
int main(const int argc, const char *argv[])
{
return 0;
}
_________________________________________________________________
I get this error message that I don't understand because FALSE appears
to be a constant value:
d:/c/test_initializer.c:3: initializer element is not constant
_________________________________________________________________
const int FALSE = 0;
int Debugging = FALSE;
int main(const int argc, const char *argv[])
{
return 0;
}
_________________________________________________________________
I get this error message that I don't understand because FALSE appears
to be a constant value:
d:/c/test_initializer.c:3: initializer element is not constant