March 12, 2010
C
In the past, numerous articles on frequently asked C Interview Questions had been posted. All those questions were accompanied with clear answers and supporting code examples wherever appropriate. An ebook named “Favourite 50 – C Question Bank” had been created and posted to the downloads page of Interview Mantra. That ebook was a result of [...]
Read the full article →
February 27, 2010
C++
1. Why don’t we have virtual constructors? The virtual mechanism, though used without the knowledge of the complete type of the object, works only on fully-constructed objects. But, in order to create an object, the user is required to provide the complete information about the object. Thus, it is not possible for a constructor to [...]
Read the full article →