Template static fuctions in classes in c++?
What I am trying to do is that make a template class of
template<typename T,int size>
and see if in the main I make an <int,5> object of that class and then an <int,6> object of that class will the compiler make two copies of that function or only one for that I’m trying to print address of that fucntion but am unable to get it