R
Rik G.
Should there be a difference in these if tests?
1. if ( (dwRC + 123456789) ^ dwEK == dwUC ) {}
2. if ( ((dwRC + 123456789) ^ dwEK) == dwUC ) {}
Only 2. works as intended but I thought the extra brackets weren't
necessary. Or are they?
R.
1. if ( (dwRC + 123456789) ^ dwEK == dwUC ) {}
2. if ( ((dwRC + 123456789) ^ dwEK) == dwUC ) {}
Only 2. works as intended but I thought the extra brackets weren't
necessary. Or are they?
R.