Differences between private, protected and public and give examples.
No Answer is Posted For this Question
Be the First to Post Answer
What is the oldest programming language?
When can you tell that a memory leak will occur?
What is scope in c++ with example?
Write about an iterator class?
How do you generate a random number in c++?
What is late binding c++?
given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
How many bit combinations are there in a byte?
What is a local reference?
If you don’t declare a return value, what type of return value is assumed?
Can member functions be private?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---