I have this class
template <class T> class dynamic_array
{
and this function:
void dynamic_array::randorder()
{
srand(time(NULL));
int *ap;
for(ap=array;k!=array+size;++k){*k=rand();}
}
The compiler is complaining about my function - "not having template parameters". How do I add this in?