#include <iostream>
#include<vector>
using namespace std;
int main(){
//initialize vector of int type
vector<int>numbers = {1,45,78,99,100};
//print the vector
cout<<"numbers are : ";
for(auto&num:numbers){
cout<<num<<",";
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: