📄 ch08_02.c
字号:
#include <stdio.h>
struct flower
{
char *name;
int price;
};
struct store
{
struct flower flower_a, flower_b;
char *boss;
};
int main(void)
{
struct store new_store, old_store;
old_store.boss = "julin";
/* flower_a
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -