/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos nb(6); nb[0] = 0; nb[1] = 1; nb[2] = 2; nb[3] = 3; std::cout << "Imprimiendo array de ints..." << std::endl; try { std::cout << "Posicion X: " << nb[5] << std::endl; } catch(std::exception &e) { std::cout << e.what() << std::endl; } std::cout << "Tamaño: " << nb.size() << std::endl; Array st(6); st[0] = "as2"; st[1] = "wa1"; st[2] = "lf2"; st[3] = "as3"; st[4] = "xs4"; st[5] = "aj5"; std::cout << std::endl << "Imprimiendo array de strs..." << std::endl; try { std::cout << "Posicion X: " << st[4] << std::endl; } catch(std::exception &e) { std::cout << e.what() << std::endl; } std::cout << "Tamaño: " << st.size() << std::endl; }