Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,051 questions

40,769 answers

573 users

How to print a list with const_iterator in C++

1 Answer

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

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

void printList(const list<int>& lst)
{
	list<int>::const_iterator i;
	for (i = lst.begin(); i != lst.end(); i++)
		cout << *i << " ";
	cout << std::endl;
}

int main()
{
	list<int> lst{ 1, 1, 2, 3, 4, 3, 4, 4, 5, 5, 5 };

	printList(lst);

	return 0;
}

/*
run:

1 1 2 3 4 3 4 4 5 5 5

*/

 





answered Jan 6, 2018 by avibootz
edited Jan 7, 2018 by avibootz

Related questions

...