Re
#define Re(_CC) (_CC.m_re)
returns the real part of the complex value.
the real part
EX1
void run_complex_Re() { complex cc(4.5, 7.8); // Display the real part: out_double("real part = ", Re(cc)); // shoulde be 4.5 }
origin.h