简历的快速复制
#include "stdafx.h" #include "iostream.h" const int CHAR_LEN = 128; //定义一个常量 struct Student //定义一个结构体 { char szName[CHAR_LEN]; //姓名 int nAge; //年龄 char szSex[CHAR_LEN]; //性别 char szAddress[CHAR_LEN]; //地址 }; int main(int argc, char* argv[]) { Student mystu; //定义一个结构体对象 mystu.nAge = 15; //设置结构体对象成员 Student mystu2; //定义另一个结构体对象 mystu2 = mystu; //为结构体对象赋值 cout << "年龄为: " << mystu2.nAge << endl; return 0; }
学习笔记转摘于:
丝酷网 http://www.pythonschool.com/