博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【C】C语言结构体指针的语法
阅读量:5953 次
发布时间:2019-06-19

本文共 598 字,大约阅读时间需要 1 分钟。

#include 
#include
#include
struct AGE{ int year; int month; int day;};struct Student{ char *name; int num; struct AGE birthday; float score;};int main(){ // 注意写法1与写法2 不能混用 // 写法1 struct Student* stu = NULL; stu = (struct Student *)malloc(sizeof(struct Student)); (*stu).num = 12; printf("%d\n", (*stu).num); // 写法2 struct Student *stu1 = (struct Student *)malloc(sizeof(struct Student)); stu1->name = "jack"; printf("%s\n", stu1->name); return 0;}

转载于:https://www.cnblogs.com/jzsg/p/10946315.html

你可能感兴趣的文章
LINUX中常用操作命令
查看>>
自定义异常类一
查看>>
Launch和Shut Off操作详解 - 每天5分钟玩转 OpenStack(30)
查看>>
23.3. 操作系统监控需求
查看>>
美国国家标准技术局发布应用容器安全指南
查看>>
webservice远程调试开启
查看>>
WinForm员工信息表
查看>>
【AIX】AIX 开机自动挂载NFS共享
查看>>
[20150123]热链竞争.txt
查看>>
【翻译+整理】.NET Core的介绍
查看>>
[20150508]列顺序问题.txt
查看>>
Aliware研究开篇
查看>>
红帽Linux 6.5上配置ASM流程
查看>>
DWZ (JUI) 教程 dwz框架 刷新dialog解决方案
查看>>
[20160803]另类行迁移.txt
查看>>
8天学通MongoDB——第五天 主从复制
查看>>
is present but cannot be translated into a null value due to being declared as a primitive type
查看>>
经典算法面试题目-翻转一个C风格的字符串(1.2)
查看>>
Linux与JVM的内存关系分析(转)
查看>>
SpringBoot配置属性之Server
查看>>