R
Richard Eich
gcc (GCC) 3.4.6 20060404 (Red Hat 3.4.6-3)
source snippet:
....
int i = 17 ;
if ( 0x03 & i )
....
produces 'invalid operands to binary &'
Since both 0x03 and i are integral operands, I don't get it.
source snippet:
....
int i = 17 ;
if ( 0x03 & i )
....
produces 'invalid operands to binary &'
Since both 0x03 and i are integral operands, I don't get it.