The code is attached below for class for complex number. Provide operator overloading functions to facilitate the following operations on any complex numbers A, B and C:
A == B; overload Boolean operator == to test if A and B are equal
C = A*B; overload multiplication operator *
A = B; overload assignment operator =
cin >> A >> B; overload stream operator >> to take user input for real and imaginary part of the number (You might want to create a friend function to facilitate this)
Also, write a static function for the complexNumber class which initializes numCount variable. Your function takes an integer argument provided by user. Assign this argument to numCount variable.