Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is friend function? C++
What is friend function? C++
✍: Guest
As the name suggests, the function acts as a friend to a class. As a friend of a class, it can access its private and protected members. A friend function is not a member of the class. But it must be listed in the class definition.
2012-02-21, 3136👍, 0💬
Popular Posts:
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
How to reduce the final size of an executable file? Size of the final execuatable can be reduced usi...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
How do we access attributes using “XmlReader”? Below snippets shows the way to access attributes. Fi...
How To Escape Special Characters in SQL statements? - MySQL FAQs - Introduction to SQL Basics There ...