How to copy int array into a list in C++

1 Answer

0 votes
#include <iostream>
#include <iterator>
#include <list>

using std::cout;
using std::endl;
using std::list;

int main()
{
	list<int> lst(5);
	list<int>::iterator p;
	int arr[5] = { 12, 42, 31, 80, 98 };

	copy(arr, &arr[5], lst.begin());    

	for (p = lst.begin(); p != lst.end(); p++)
		cout << *p << " ";

	cout << endl;

	return 0;
}


/*
run:

12 42 31 80 98

*/

 



answered Apr 22, 2018 by avibootz
...