When must you use a constructor initializer list?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between creating an object, using 'new' and using 'malloc'?
In C++ what is a vtable and how does it work?
Write a C++ Program to find Addition of Two Numbers.
What kind of problems does name mangling cause?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What are the advantages/disadvantages of using #define?
Question on Copy constructor.
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
What are pass by value and pass by reference?what is the disadvantage of pass by value?
What does it mean to declare a member function as static in C++?
What is the difference between virtual functions and pure virtual functions?
write a program To generate the Fibonacci Series.