/*COMPLEX.H - HEADER FILE FOR COMPLEX STRUCTURE DEFINITION*/ struct cmpx { double real; double imag; }; typedef struct cmpx COMPLEX;