黑馬程序員匠心之作|C++教程從0到1入門編程--練習--結構體指針

代碼功能:通過結構體指針訪問結構體的成員,在這裏我定義了結構體變量,和結構體數組來理解。 #include #include using namespace std; //定義結構體 struct Student { string name; int age; int score; }; int main() { //1、創建結構體變量 Student s1 = { 「張美麗」,18,100 };
相關文章
相關標籤/搜索