std::real(std::complex)
From cppreference.com
                    
                                        
                    
                    
                                                            
                    |   Defined in header <complex>
   | 
||
|   template< class T >  T real( const complex<T>& z );  | 
(1) | |
|   long double real( long double z );  | 
(2) | (since C++11) | 
|   template< class DoubleOrIngeter > double real( DoubleOrInteger z );  | 
(3) | (since C++11) | 
|   float real( float z );  | 
(4) | (since C++11) | 
Returns the real component of the complex number z, i.e. z.real().
(since C++11)Additional overloads are provided for float, double, long double, and all integer types, which are treated as complex numbers with zero imaginary component.
[edit] Parameters
| z | - | complex value | 
[edit] Return value
the real component of z
[edit] See also
|    accesses the real part of the complex number  (public member function)  | |
|    accesses the imaginary part of the complex number  (public member function)  | |
|    returns the imaginary component   (function template)  | |