conjf, conj, conjl

From cppreference.com
Defined in header <complex.h>
float complex       conjf( float complex z );
(since C99)
double complex      conj( double complex z );
(since C99)
long double complex conjl( long double complex z );
(since C99)

Computes the complex conjugate of z by reversing the sign of the imaginary part.

[edit] Parameters

z - complex argument

[edit] Return value

The complex conjugate of z.

[edit] Example