fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int adcvalue;
  5. adcvalue=0b0110010;
  6. int second=0b11001010;
  7. int result = (adcvalue << 8) | second;
  8. printf("%d", result);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
13002