Emma
0
Q:

how to initialize vector in c++ with all elements 0

 vector<int> arr(10,0);
4
std::vector<type> name;
5
#include <bits/stdc++.h> 
#include <vector> 
using namespace std; 
  
int main() 
{ 
// This vector initializes with the values: 10, 20, and 30
  vector<int> vect{ 10, 20, 30 }; 

    return 0; 
} 
2

New to Communities?

Join the community