1. #include <iostream>
  2. #include <complex>
  3.  
  4. using namespace std;
  5.  
  6. complex<double> * M;
  7.  
  8. int main() {
  9. M = new complex<double>[5];
  10. M[0] = complex(2,3);
  11. return 0;
  12. }
  13. Bill