fork download
  1. #include <iostream>
  2. #include <netinet/in.h>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. auto i = ntohl(0);
  8. cout << i << endl;
  9. // auto i = ntohl(0x9b000000);
  10. // cout << i << endl;
  11.  
  12. // i = ntohl(0x97000000);
  13. // cout << i << endl;
  14.  
  15. // i = ntohl(0x95000000);
  16. // cout << i << endl;
  17.  
  18. // i = ntohl(0x93000000);
  19. // cout << i << endl;
  20.  
  21. // i = ntohl(0x8d000000);
  22. // cout << i << endl;
  23.  
  24. // i = ntohl(0x67000000);
  25. // cout << i << endl;
  26.  
  27. // i = ntohl(0x41000007);
  28. // cout << i << endl;
  29.  
  30. // i = ntohl(0x0000005f);
  31. // cout << i << endl;
  32.  
  33. return 0;
  34. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
0