Extensibility primarily relates to the language itself and is ultimately decided by the C++ standards committee members. Programmers can make proposals to the committee, but they have no influence as such.
Extensibility with regards your own programs is entirely down to your design team. The language is immaterial on this regard, it's up to you to decide which standards your programs will adopt, whether extensibility is enabled through COM, NET, scripts or some user-defined/proprietary mechanism.
Note that extensibility is not the same as scalability, which is probably what you were really asking.
A manual check of the algorithm to ensure its correctness.
extensibility
b+b+b+c+c+c+c =3b+4c
c + c + 2c + c + c = 6c
b + b + b + c + c + c + c = 3b + 4c
4c
c + c + c + c + c = 5 * c.
eMASS provides automation (through the C&A package), accountability (through roles and PKI), extensibility (will scale to any enterprise size), and
There are no "primary and secondary keys" in c and c plus plus.
extensibility
3c
extensible means to enhance the program with new capabilities. In c++, extensibility can be achieved by using virtual function. now first we discuss what is virtual function in c++. " C++ virtual function is a member function of a class, whose functionality can be over-ridden in its derived classes. The whole function body can be replaced with a new set of implementation in the derived class." Through this u can be able to promote extensibility in your program by using Virtual function. Very simple concept.