helle everyone
im beginner in c++ ,im learning template can you help me i cant found the error in this program
// file Tableau.h
template<class Tdonnee>
class Tableau {
Tdonnee* tab;
int taille;
public:
Tableau(Tdonnee init ,int size);
.....
//file Tableau.cpp
template<class...