Final answer:
The friend istream operator overload in the .h file of a class Complex should be declared in the public section.
Step-by-step explanation:
The friend istream operator overload in the .h file of a class Complex should be declared in the public section. This is because the friend keyword is used to grant access to the private members of the class, allowing the operator to read the private members of Complex objects.