Inherited Code Discussions | C++ | HackerRank

Inherited Code

  • + 0 comments
    1. struct BadLengthException{ int n; BadLengthException(int n){ this->n = n; } int what(){ return n; } };