Represents a complex number.
#include <math.h>
__COMPLEX
{
double real;
double imag;
};
#ifdef __cplusplus
# define __COMPLEX struct __COMPLEX
#else
# define __COMPLEX struct complex
#endif
Specifies the real part of the complex number.
Specifies the imaginary part or the complex number.