0
why cant we operate a byte variable with a constant?
eg; // i'm using java byte b=5; b=b*2; //this shows error b=byte (b*2); //it won't show error b*=2; //this also correct statement but how??
1 Answer
0
That's odd. What error message did you get?
eg; // i'm using java byte b=5; b=b*2; //this shows error b=byte (b*2); //it won't show error b*=2; //this also correct statement but how??