What is a class in C++?
Answer / nashiinformaticssolutions
The core components of C++ object-oriented programming are classes. They represent a collection of connected objects and are a user-defined data type. Classes keep variables and member functions together.
| Is This Answer Correct ? | 0 Yes | 0 No |
In C++ what is the meaning of data hiding?
Consider the following C++ program
What Is A Default Constructor in C++ ?
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 wrong with this statement? std::auto_ptr ptr(new char[10]);
What are the different scope C++ provide ?
Explain the difference between C and C++.
Name the operators that cannot be overloaded.
What is partial specialization or template specialization?
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-; } }
Tell me about virtual function
what is the difference between a pointer and a reference?
0 Answers Amazon, Blue Star, C DAC,