fork download
  1. #include <iostream>
  2.  
  3. int main ()
  4. {
  5. unsigned int ipAddress = 0x12345678;
  6. std::cout << ((ipAddress >> 24) & 0xFF) << "."
  7. << ((ipAddress >> 16) & 0xFF) << "."
  8. << ((ipAddress >> 8 ) & 0xFF) << "."
  9. << ((ipAddress ) & 0xFF) << std::endl;
  10. return 0;
  11. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
18.52.86.120