/************************************************************ * Header file def_complex.h for floating-point ************************************************************/ struct cmpx { float re; float im; }; typedef struct cmpx complex;