You are viewing a single comment's thread. Return to all comments →
**c++ 11 // Write your code here
template void printArray(const vector& A) { for (const auto &element : A) { cout << element << endl; } }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 21: Generics
You are viewing a single comment's thread. Return to all comments →
**c++ 11 // Write your code here
template void printArray(const vector& A) { for (const auto &element : A) { cout << element << endl; } }