summaryrefslogtreecommitdiff
path: root/9p41.cpp
blob: f96e38ee93160ef35f86248dd1cade2ac78b0581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <vector>

/*
 *
 * 9.41
 *
 *
 */

int main () {

	std::vector<char> vc = {'a','b','c','d','e','f','g','h','i','j'};
	std::string s1(vc.cbegin(), vc.cend());
	std::cout << s1 << std::endl;
	return 0;
}