#include <iostream> #include <cstdlib> using namespace std; class Student { public: Student() { cout << "Construyendo Student" << endl; } }; int main( int argc , char *argv[] ) { cout << "Construyendo un arreglo que contiene 5 objetos Student" << endl; Student s[ 5 ]; system("pause"); return 0; }
No hay comentarios:
Publicar un comentario