fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int x;
  5. cin >> x;
  6. int *p = new int[x];
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 5460KB
stdin
1
stdout
Standard output is empty