class A {
public:
virtual void talk() { printf("A
"); }
virtual ~A(){}
};
class B: public A {
public:
// using virtual is not really necessary here, but it's good for clarity.
virtual void talk() { printf("B
"); }
};
Code Example |
---|
Cpp :: cuda atomic swap |
Cpp :: online compiler cpp |
Cpp :: c++ max function |
Cpp :: how to initialize a vector in c++ |
Cpp :: c++ cout |
Cpp :: pointers in c++ |
Cpp :: search in vector of pairs c++ |
Cpp :: c++ vector remove element by value |
Cpp :: default access specifier in c++ |
Cpp :: program to find third smallest number c++ |
Cpp :: while loop c++ |
Cpp :: c++ copy string |
Cpp :: c++ loop array |
Cpp :: set elements to 42 back |
Cpp :: do while loop c++ |
C :: bold text in c |
C :: terminal count files in directory |
C :: write in file in c |
C :: variably modified ‘_memory’ at file scope |
C :: rl_replace_line |
C :: How to generate a random array in c |
C :: npm fix old lockfile |
C :: clrscr in c |
C :: c Program to check if a given year is leap year |
C :: differnce between spooling and buffering |
C :: turn a char into an int in c |
C :: array value from user c |
C :: c in array |
C :: print a part of string c |
C :: signal function c |