complex_main.cpp
#include <iostream> #include "complex.h" int main(){ Complex a(1,1); Complex b(1,-1); Complex c(2,2); std::cout << a/b; return 0; }