EJERCICIO CONSTRUCTORES
#include <iostream> #include <conio.h> #include <stdio.h> using namespace std; class DatosPersonales{ private: string nombre, estadocivil; int edad; public: DatosPersonales(){ edad = -1; nombre = "x x x"; estadocivil = "Desconocido"; } void GetDatos() { cout << nombre << endl; cout << edad << endl; cout << estadocivil; } }; main() { DatosPersonales p1; p1.GetDatos(); getch(); }