c++ interview questions on static classes, static initializer, and static members
c++, interview questions,static classes, static initializer,, static members
Quant Development
c++, interview questions,static classes, static initializer,, static members
C++ Interview questions on name mangling, extern, and struct
c++ interview questions on inline functions and this pointer
C++ interview questions on STL containers like vector and list
c++ interview questions with overloading Overloading: Have you overloaded operator new ? I said yes then Y did u do that ? Overloading new will help a programmer to allocate memory in his own way, probably in a more optimzed manner. For example jus in case if somebody want to recycle the memory, by not …
c++ interview questions with overloading and operators that cannot be overloaded Read More »
C++ interview questions with overriding Overriding: if base class function and overriding function has different return type how it will impact into main program. lets say base class function is returning int which is virtual and derived class function is returning is String. and I have base* b = new derived() so can I call …
C++ interview questions with overriding with code samples Read More »
All C++ interview questions including function pointers, auto pointers, shared pointers, and code samples
C++ ,virtual ,interview questions,pure virtual constructors, pure constructors, and pure destructors
C++ ,interview questions, reference, reference vs pointer, pass by reference
C++ interview questions on storage classes like static, register, auto, extern, volatile, mutable Storage classes What are C++ storage classes? auto register static extern auto: the default. Variables are automatically created and initialized when they are defined and are destroyed at the end of the block containing their definition. They are not visible outside that …