fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. int main()
  5. {
  6. std::vector<int> a(5, 1);
  7. for(int i = 0; i < 5; i++)
  8. std::cout<< a[i]<<' ';
  9. }
Success #stdin #stdout 0s 16048KB
stdin
Standard input is empty
stdout
1 1 1 1 1