I want to create a vector of templates but I'm getting 2 linker errors.
I am doing the following :

template<typename T>
int main()
{
vector<T> exp;
return 0;
}

I really need to store elements of different types in the same vector. Please help thank you.