Holiday Notice: We're away from Apr 30 to May 5, but our store is open 24/7! All orders placed now will be promptly processed and shipped on May 6.
x << n
x >> n
int x = 10;
Serial.println(x>>1);
Serial.println(x>>2);
Serial.println(x<<1);
Serial.println(x<<2);
void setup() { Serial.begin(115200); int x = 10; Serial.print("x >> 1: "); Serial.println(x>>1); Serial.print("x >> 2: "); Serial.println(x>>2); Serial.print("x << 1: "); Serial.println(x<<1); Serial.print("x << 2: "); Serial.println(x<<2); } void loop() {}
