加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
结构体_2_如何去定义一个结构体.cpp 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
tanggitee 提交于 2020-03-18 18:21 . 自学C语言敲得代码
#include <stdio.h>
//第一种方式
struct Student
{
int age;
float score;
char sex;
};
int main(void)
{
struct Student st = {80,66.6,'F'};
return 0;
}
//第二种方式
struct Student2
{
int age;
float score;
char sex;
}st2;
int main(void)
{
struct Student st = {80,66.6,'F'};
return 0;
}
//第三种方式
struct
{
int age;
float score;
char sex;
}st3;
int main(void)
{
struct Student st = {80,66.6,'F'};
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化