can u pass template class objects as parameters to friend functions of the same class??
i tried sumthin like...
template<class T>
class array
{
T a[10];
int n;
public:
friend istream& operator>>(istr eam&,array&);
friend ostream& operator<<(ostr eam&,array&);};
istream& operator >>(istream& din,array& b)...