Well when we have an expression like this:
int obj= first | second;
Why is this style preferred than the equivalent:
int obj= first+ second; ?
int obj= first | second;
Why is this style preferred than the equivalent:
int obj= first+ second; ?
Comment