fill method in c++ code example
Example: fill c++
fill (ForwardIterator first, ForwardIterator last, const T& val);
//EXample:
fill(v.begin(), v.end(), -1);
fill (ForwardIterator first, ForwardIterator last, const T& val);
//EXample:
fill(v.begin(), v.end(), -1);