#include #include using namespace std; #include "array2.h" int main() { Array s("default"); s[0] = "ciao"; s[1] = "mondo"; for(int i=0; i<10; ++i) { cout << i << '\t' << s[i] << endl; } }