Say the variable x is declared as an unsigned long in Arduino C Which of the following will write the MOST significant byte of x to the serial stream?
A. Serial.write(x);
B. Serial.write(x >> 8);
C. Serial.write(x >> 16);
D. Serial.write(x >> 24);