fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned int a = 0xA0;
  5. unsigned int b = 0x11;
  6. unsigned c= a|b;
  7.  
  8. printf("%d",c) ;
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
177