#include using namespace std; int main(){ vector a(10,0); //init a vector with 10 zero's vector b{1,2,3}; //init a vector with values 1,2,3 vector c(5); //init a vector with length 10 vector d; //init a vector }