fork download
  1. void f(char*){}
  2. void g(long int){}
  3.  
  4. int main() {
  5. //POPRAWNIE:
  6. f(reinterpret_cast<char*>(0x80000000));
  7. g(reinterpret_cast<long int>("a"));
  8. }
  9.  
Success #stdin #stdout 0.01s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty