diff options
Diffstat (limited to '9p41.cpp')
-rw-r--r-- | 9p41.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/9p41.cpp b/9p41.cpp new file mode 100644 index 0000000..f96e38e --- /dev/null +++ b/9p41.cpp @@ -0,0 +1,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; +} |