任性冥王星

文章
8
资源
0
加入时间
2年10月17天

结构体struct

#include <stdio.h>struct book//结构体struct,它可以在C语言中创建一个新的类型。{ char name[20]; float price; char author[20];};int main(){ struct book s = {"《把心安顿好》",25,"周国平"}; //这是结构体的创建和初始化 struct book* ps = &s;//指针指令搭配的是取地址符号&