VOOZH about

URL: https://www.geeksforgeeks.org/cpp/conj-function-in-cpp/

⇱ conj() function in C++ with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

conj() function in C++ with Examples

Last Updated : 11 Jul, 2025

The conj() function is defined in the complex header file. This function is used to find the conjugate of the complex number z. If we represent a complex number z as (real, img), then its conjugate is (real, -img).
Syntax:

template<class T> complex<T> 
conj (const complex<T>& Z);


Parameter:

  • z: This method takes a mandatory parameter z which represents the complex number.


Return value: This function returns the conjugate of the complex number z.

Time Complexity: O(1)

Auxiliary Space: O(1)
Below programs illustrate the conj() function for complex number in C++:
Example 1:-


Output
The conjugate of (3,2.4) is: (3,-2.4)

Example 2:-


Output
The conjugate of (2,9) is: (2,-9)
Comment
Article Tags: