What are "pure virtual" functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is Coupling?
How to convert integer to string in C++
How do you work around them?
Write a program to read the values a, b and c and display x, where x=a/b–c. Test the program for the following values: (a) a = 250, b = 85, c = 25 (b) a = 300, b = 70, c = 70
What are the advantages/disadvantages of using inline and const?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }
To solve the 8 Queens problem, which algorithm is used?
Identify the error in the following program. include<iostream> using namespace std; void main() { int num[]={1,2,3,4,5,6}; num[1]==[1]num ? cout<<"Success" : cout<<"Error"; }
What is placement new?
What is a COPY CONSTRUCTOR and when is it called?
What is the difference between public, private, and protected inheritance?