C/C++结构体struct 与结构体数组和枚举型enum的结合使用

C/C++结构体struct 与结构体数组和枚举型enum的结合使用 #include "stdafx.h" #include <string> #include <iostream> using namespace std; //定义一个结构体:Person struct Person { char* name; int age; int height; }; //结构体数组Perso
相关文章
相关标签/搜索