int a= 0b0011;
int b= 0b0010;
int c;
void setup() {
Serial.begin(9600);
c=a|b;
Serial.println(c,BIN );
}
void loop() {
// put your main code here, to run repeatedly:
}
int a= 0b0011;
int b= 0b0010;
int c;
void setup() {
Serial.begin(9600);
c=a|b;
Serial.println(c,BIN );
}
void loop() {
// put your main code here, to run repeatedly:
}