fork(2) download
  1. #include <iostream>
  2. #include <cstdint>
  3. using namespace std;
  4.  
  5. uintptr_t addr(const char* p) {
  6. return uintptr_t(p);
  7. }
  8.  
  9. int main() {
  10. cout << addr("Hello, world!") << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
134514560