blob: fd3635451de76262c56df2e303b9609855e10882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <iostream>
/*
*
* 9.12
*
*
*/
int main () {
// constructor that takes container of same type as itself and creates a copy of the other container.
// constructor with iterators take the iterators and iterate with them to copy the values. Container types dont have to be the same, just the element types that have to be the same.
return 0;
}
|