1 Star 0 Fork 0

LC.yulin/C.语言

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.6_29.c 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
LC.yulin 提交于 2022-06-29 23:06 . C语言基础代码练习
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
//int main()
//{
// int arr[10] = { 0 };
// memset(arr, 1, 20);
//
// return 0;
//}
//匿名结构体类型,只能使用一次
//struct
//{
// char name[10];
// int age;
// float f;
//}s;
//结构体的自引用
//struct Node
//{
// int i;
// struct Node* next;
//};
struct stu
{
int age;
char name[20];
char id[5];
};
struct S
{
int i;
struct stu s;
double d;
};
int main()
{
struct S sa = { 3,{20,"zhangsan","2021"},3.14 };
printf("%d %d %c %c %lf\n", sa.i, sa.s.age, sa.s.name, sa.s.id, sa.d);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/lc-yulin/c-language.git
git@gitee.com:lc-yulin/c-language.git
lc-yulin
c-language
C.语言
master

搜索帮助