/* * Check whether you have the complex fmod function. */ # include using namespace std; int main() { complex x,y; fmod(x,double(2.0)); fmod(x, y); fmod(double(2.0), x); return 0; }