fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct WrappedVector {
  5. static int _N;
  6. double *_x;
  7. };
  8.  
  9. int WrappedVector::_N = 3;
  10.  
  11. int main() {
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty