#include #include #include using namespace std; //The blueprint. struct month { int length; //number of days string name; }; int main() { month m = {31, "January"}; //C++ doesn't need keyword struct here. cout << m.length << " " << m.name << "\n"; //cout << m << "\n"; //can't say this yet. m.length = 29; m.name = "February"; cout << m.length << " " << m.name << "\n"; return EXIT_SUCCESS; }