fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. char* pc = "hello";
  6. std::cout << pc << std::endl;
  7. std::cout << static_cast<void*>(pc) << std::endl;
  8. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
hello
0x8048a00