11.04.2015, 14:42
Both of them are 0.
I'll give you an example to show you what I mean:
error 040: duplicate "case" label (value 0) will be given because both AB and BC are defined as 0.
I'll give you an example to show you what I mean:
PHP код:
#define AB 0
#define BC 0
// somewhere:
new a = 5;
switch (a)
{
case AB: {}
case BC: {}
}