fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int *val = new int;
  6. *val = sizeof(val) / sizeof(int *);
  7. int *tab = new int[*val];
  8. tab[0] = *val;
  9. delete val;
  10. cout << *tab;
  11. delete [] tab;
  12. return 0;
  13. }
  14.  
  15.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
1