Answered Questions

  • what is meant by constructer

    CHANDRA SEKHAR

    • May 31st, 2006

       constructor is a special kind of method. which is used to initialize the object at run time.

    Savitha

    • Apr 20th, 2006

    A constructor is a function inside a class which has the same name as the class name. The purpose of a constructor is to initialize the data members of the class when an object instance is created . constructor doesnt have a return value.