fork download
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <netinet/in.h>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. auto i = ntohl(0x3313);
  9. cout << i << endl;
  10. cout << showbase << hex << i << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
322109440
0x13330000