fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5.  
  6.  
  7. unsigned int a = 8;
  8. printf("Bitwise NOT Of 8 is %u",~a);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5416KB
stdin
Standard input is empty
stdout
Bitwise NOT Of 8 is 4294967287