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,111 questions

40,781 answers

573 users

How to initialize and print a forward_list with ints in C++

1 Answer

0 votes
#include <iostream>  
#include <forward_list> 

using std::forward_list;
using std::cout;

void printList(const forward_list<int>& flist)
{
	for (auto elem : flist) {
		cout << elem << ' ';
	}
	cout << std::endl;
}

int main()
{

	forward_list<int> flist = { 1, 2, 3, 4, 5 };

	printList(flist);

	return 0;
}

/*
run:

1 2 3 4 5

*/

 





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

Related questions

1 answer 89 views
1 answer 94 views
1 answer 139 views
139 views asked Aug 2, 2020 by avibootz
1 answer 86 views
1 answer 87 views
87 views asked Aug 2, 2020 by avibootz
...