fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. int main(void) {
  5.  
  6. uint8_t a = 10, b = ~a;
  7.  
  8. printf( "%hhu", b );
  9.  
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
245