요즘에 stl을 공부하고 있는데...처음부터 막히네요!
[code:1]#include <iostream>
using std::cout;
using std::cin;
using std::endl;
#include <vector>
template< class T >
void printVector( const std::vector< T > &integers2 );
int main ( void )
{
const int SIZE = 6;
int array[ SIZE ] = { 1, 2, 3, 4, 5, 6 };
std::vector< int > integers;
cout << "The initial size of integers is: "
<< integers.size()