Your Ad Here
0

What is public, protected, private?

Posted by The Blogger on 8:20 AM in
Answer:

Public, protected and private are three access specifier in C++.
Public data members and member functions are accessible outside the class.
Protected data members and member functions are only available to derived classes.
Private data members and member functions can’t be accessed outside the class. However there is an exception can be using friend classes.
Write a function that swaps the values of two integers, using int* as the argument type.
void swap(int* a, int*b) {
int t;
t = *a;
*a = *b;
*b = t;
}


interview questions and answers, interview question What is public, protected, private, What is public, protected, private, public private protected cpp

0 Comments

Post a Comment

Your Ad Here

Copyright © 2009 Interview Questions and Answers