In C++ what is the meaning of data hiding?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that ask for user input from 5 to 9 then calculate the average
How does stack look in function calls? When does stack overflow? What can you do to remedy it?
what is a pragma in C++?
What are Agilent PRECOMPILERS?
When would you use a pointer? A reference?
What is the difference between public, private, and protected inheritance?
Explain the FOR loop with a help of a code.
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
Can we provide one default constructor for our class?
What are the advantages/disadvantages of using inline and const?
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-; } }
Find the Factorial of a number using a program.