Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~93 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for durga prasad d

Hi all, What is vtable ? How many vtables created for this sample. class A { virtual void myFunc() = 0; }; class B : public A { virtual void myFunc() = 0; }; class C: pulibc B { void myFunc() { cout <<"MyFunc"<<endl; } }; void main(void) { C …

Member Avatar for Narue
0
93