加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
chap03_01.cpp 577 Bytes
一键复制 编辑 原始数据 按行查看 历史
Admin 提交于 2022-03-25 07:08 . cpp_structures
#include <iostream>
#include <cstring>
using namespace std;
struct StuNode
{
int ID;
char name[32];
char gender[8];
int age;
};
void Set(struct StuNode *s, int id, const char *sn, const char *sg, int a)
{
s->ID = id;
strcpy(s->name, sn);
strcpy(s->gender, sg);
s->age = a;
}
void Output(struct StuNode s)
{
cout << s.ID << "," << s.name << "," << s.gender << "," << s.age << endl;
}
int main()
{
struct StuNode myNode;
Set(&myNode, 101, "Tom", "male", 35);
Output(myNode);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化