1. 首页
  2. 数据库
  3. 其它
  4. C++结构体作为函数参数传参的实例代码

C++结构体作为函数参数传参的实例代码

上传者: 2021-01-31 09:09:37上传 PDF文件 45.26KB 热度 15次
具体代码如下所示: #include using namespace std; #include //结构体 struct Student { string name; int age; int score; }st3; /* *结构体作为函数参数传参 */ //值传递 void printStufdent1(struct Student st3) { cout << 子函数 << endl; st3.age = 100; cout << 名字: << st3.name << 年
用户评论