#include <iostream>
#include <vector>
using namespace std;
vector<int> newvector() {
vector<int> v;
v.push_back(5);
return v;
}
int main(){
cout << newvector();
}
When I run this code I got an error in cout how to run this properly to return a out as vector