On 9/20/12 6:03 PM, renoX wrote:Thank for these slides.I didn't get some part of the VRP slides: p40 of the third lesson:byte a, b, c; a = 1; b = c | a; // errorIs-this really an error? A binary-or operation on bytes should return abyte.. BR, renoXYes, it's a bug in the slides. Thanks! A correct example would be:byte a, b; int c = 1; b = c | a; Andrei
Ah, I understand better now. Thanks for your reply. BR, renoX
