Name: Anonymous 2012-10-07 21:47
template <size_t N>
void print_members(int (&arr)[N]) { ... }
so is C++ going to create a new function for every different sized array I use
template <size_t N>
void print_members(int (&arr)[N]) { ... }
std::cout << "Hello world" << std::endl;
usually compiles into a 500K~ binary.