fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int n = 0b0000100000100100;
  5. printf("You input: %d", n);
  6.  
  7. n = n | (1 << 9);
  8. printf("\nBit 9 on is: %d", n);
  9. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
You input: 2084
Bit 9 on is: 2596