Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

 

History

History
21 lines (15 loc) · 631 Bytes

fill.md

File metadata and controls

21 lines (15 loc) · 631 Bytes

fill

Description : This function assigns the value ‘val’ to all the elements in the range [begin, end), where ‘begin’ is the initial position and ‘end’ is the last position.

Example :

int main () {
  std::vector<int> myvector (8);                       // myvector: 0 0 0 0 0 0 0 0

  std::fill (myvector.begin(),myvector.begin()+4,5);   // myvector: 5 5 5 5 0 0 0 0
  std::fill (myvector.begin()+3,myvector.end()-2,8);   // myvector: 5 5 5 8 8 8 0 0

  for(int i = 0; i<10; i++)
    	cout<<myvector[i]<<" ";
  std::cout << '\n';

  return 0;
}

Run Code