加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2.c 588 Bytes
一键复制 编辑 原始数据 按行查看 历史
LYX 提交于 2023-09-24 18:18 . 1
/*
* @Author: LYX
* @Date: 2023-09-14 19:19:15
* @LastEditTime: 2023-09-24 18:10:14
* @FilePath: \Test\gd32-f450-smart-car\2.c
* @Description: 纸上谈来终觉浅 绝知此事要躬行
* @Team:行胜于言
* Copyright (c) 2023 by 行胜于言, All Rights Reserved.
*/
#include <stdio.h>
int main(void)
{
int x = 5;
int *p = &x;
*p = 6;
int **q = &p;
int ***r = &q;
printf("%d\n", *p);
printf("%d\n", *q);
printf("%d\n", **q);
printf("%d\n", **r);
printf("%d\n", ***r);
***r = 10;
printf("x = %d\n", x);
**q = *p + 2;
printf("x = %d\n", x);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化