class Word { public: Word(const char*, int = 0); }; Referring to the sample code above what is the minimum number of arguments required to call the constructor ?
answer should be be it will take 1 minimum 1 argument since we have placed a const char pointer in argument in the constructor since there is no othet constructor it will definitely require 1 argument to be passed to the char ptr