Final answer:
The return type of a constructor function is void.
Step-by-step explanation:
The return type of a constructor function is void. Unlike other functions, constructors do not have a return type because their main purpose is to initialize objects of the class they belong to. Constructors are called automatically when an object is created, and their return type is automatically set to void.