fork download
  1. #include <iostream>
  2. #include <netinet/in.h>
  3. #include <asm/types.h>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. // __u32 i = ntohl(131072);
  9. auto i = (41 ^ 40);
  10.  
  11. cout << i << endl;
  12.  
  13. // auto j = (0xfb ^ 0xf9) << 16;
  14. // cout << j << endl;
  15.  
  16. // auto k = i;
  17. // k |= j;
  18.  
  19. // cout << k << endl;
  20.  
  21.  
  22.  
  23.  
  24. return 0;
  25. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
1