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 I want but I thought the extra braces weren't
necessary. Or are they?
R.
1. if ( (dwRC + 123456789) ^ dwEK == dwUC ) { ...
2. if ( ((dwRC + 123456789) ^ dwEK) == dwUC ) { ...
Only 2. works as I want but I thought the extra braces weren't
necessary. Or are they?
R.