fork download
  1. #include <cstdio>
  2. struct A{int a;};
  3. int main() {
  4. auto a = new A({4});
  5. printf("%x\n", a->a);
  6. return 0;
  7. }
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
4