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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,994 questions

51,939 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

1 answer 114 views
114 views asked Apr 27, 2018 by avibootz
1 answer 137 views
1 answer 167 views
1 answer 391 views
391 views asked Jul 30, 2020 by avibootz
...