on base class we have: virtualvoid Hello()=0;
on derived class we have: void Hello(); //not defined
here i will get 2 errors:
1 - "undefined reference to `b::Hello()'";
2 - "||error: ld returned 1 exit status"
can i avoid these error without define the function?
(if i don't use 'virtual', on base class, the function called will, always,called the base function instead the derived function)