Explain the characteristics of friend functions?

Submitted by: Administrator
A friend function is not in the scope of the class n which it has been declared as friend.
It cannot be called using the object of that class.
It can be invoked like a normal function without any object.
Unlike member functions, it cannot use the member names directly.
It can be declared in public or private part without affecting its meaning.
Usually, it has objects as arguments.
Submitted by: Administrator

Read Online C++ Friend Job Interview Questions And Answers