Answers for "is there interfaces in c++ like"

C++
0

is there interfaces in c++ like

C++ has no built-in concepts of interfaces. You can implement it
using abstract classes which contains only pure virtual functions.
Posted by: Guest on March-15-2022

Browse Popular Code Answers by Language