当前位置:网站首页>程序员老鸟都会搞错的问题 C语言基础 指针和数组
程序员老鸟都会搞错的问题 C语言基础 指针和数组
2022-07-06 09:17:00 【csdndulala】
// a.c
char name[] = "tom";
// b.c
extern char *name;
void main()
{
printf("%s", name);
}
执行会失败,为什么?
背景知识0
可执行文件包含4类段内容:
.text 存放代码段
.data 存放数据段。已初始化的全局变量或静态变量
.rodata 存放只读数据段。如字符串常量
.bss 存放未初始化的全局或静态变量。背景知识1
char a[] = “abc”;
char *b = “def”;
a和b有什么区别?分别放在哪个段内?
区别1:b是一个变量,有自己的地址以及存储的数据;a只是一个名字,a就是“abc”的地址。(可以打印a和&a,是一样的)
区别2:“abc”存储在data段,“def”存储在rodata段
区别3:“abc”内容可以修改,“def”内容不能修改背景知识2
char a[] = “abc”;
char *b = a;
问:a[0]和b[0] 有什么区别?
a[0]直接取值;b[0]先找到b存储的值(a地址),然后根据a地址取值
地址随便取的 a的值是0x3315,a[0]的地址也是0x3315
// a.c
char name[] = "tom";
// b.c
extern char *name;
void main()
{
printf("%s", name);
}
因此在b.c中:extern char *name;
声明name是一个指针,因此在打印name的时候,会先找到name存储的内容:“tom”,然后将“tom”作为地址去取值。
解决方法1:
// a.c
char name[] = "tom";
// b.c
extern char name[];
void main()
{
printf("%s", name);
}
解决方法2:
// a.c
char *name = "tom";
// b.c
extern char *name;
void main()
{
printf("%s", name);
}
边栏推荐
- R & D thinking 01 ----- classic of embedded intelligent product development process
- IOT system framework learning
- Mall project -- day09 -- order module
- Password free login of distributed nodes
- Encodermappreduce notes
- JS array + array method reconstruction
- Word typesetting (subtotal)
- [CDH] modify the default port 7180 of cloudera manager in cdh/cdp environment
- [yarn] CDP cluster yarn configuration capacity scheduler batch allocation
- MongoDB
猜你喜欢
随机推荐
Wangeditor rich text component - copy available
Gallery之图片浏览、组件学习
RT thread API reference manual
[CDH] cdh5.16 configuring the setting of yarn task centralized allocation does not take effect
锂电池基础知识
B tree and b+ tree of MySQL index implementation
Funny cartoon: Programmer's logic
imgcat使用心得
冒泡排序【C语言】
MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
机器学习--线性回归(sklearn)
Reno7 60W super flash charging architecture
树莓派 轻触开关 按键使用
[yarn] yarn container log cleaning
Linux yum安装MySQL
Variable star user module
MySQL数据库面试题
Reading notes of difficult career creation
C语言回调函数【C语言】
[Presto] Presto parameter configuration optimization