Mega Code Archive
Categories
/
C++
/
Vector
Demonstrating the simplest STL vector constructors
#include
#include
#include
using namespace std; int main() { vector
vector1; cout << vector1.size(); return 0; } /* 0 */