Explain the differences between public, protected, private
and internal.
Answers were Sorted based on User's Feedback
Answer / avinash
public means we can access the code or data in public that
is visible to others.
protected means the code or data can be within the system
and,or it has no access to it.and it is not available.
private means it can be accessesed only by the person who
has the access or key to it.
| Is This Answer Correct ? | 1 Yes | 0 No |
public:-
--------- It means we can access the property of public;
directly from out side of the class.
private:-
---------- it means we can't access the property of
private;
directly from out side the class.
and we can't intilizing the member var during run time
we have to use constuctor.
proctected:-
If we wnat to inherit private data member only onces.
then we make them protcted
| Is This Answer Correct ? | 10 Yes | 11 No |
how can i sort numbers from ascending order and descending order using turbo c..
Is c compiled or interpreted?
Write a program that his output 1 12 123
What are .h files and what should I put in them?
What are register variables in c?
all c language question
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
What is pointer to pointer in c?
What is the purpose of the preprocessor directive error?
Write a program to print factorial of given number without using recursion?
will u please send me the placement papers to my mail???????????????????
4. main() { int c=- -2; printf("c=%d",c); }