/* * Check whether the compiler has complex. */ #include using namespace std; int main() { complex a; complex b; abs(b); real(b); imag(b); arg(b); conj(b); return 0; }