What is encapsulation process?
No Answer is Posted For this Question
Be the First to Post Answer
What exactly is polymorphism?
Prepare me a program for the animation of train
Write a c++ program to display pass and fail for three student using static member function
What are the access specifiers avaible in c++?
Write pseudo code for push in a stack?
inheritence with example
Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.....
4 Answers Bally Technologies, IBM, SoftSol,
What is the difference between the c++ & java?
Does c++ support multilevel and multiple inheritance?
How do you use inheritance in unity?
What do we mean by a hidden argument in C++?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile