suppose
int a=4;
int prod1=17*a;
int prod2=a<<4+a; //another way of implementing 17*a
Is there any problem with prod2..?
int a=4;
int prod1=17*a;
int prod2=a<<4+a; //another way of implementing 17*a
Is there any problem with prod2..?
Comment