ok thanks now lets see if anyone knows the answer to this one. If I have a code structure like so.
Quote:
#define VAR 100
{code1}
#define VAR 50
{code2}
|
Which the compiler doesn't crash on me, i've tried this, in the second segment of code(code2) what does the compiler put in place of VAR. 50 or 100? Is this an effective way to have my cake and eat it too?