#include <stdio.h>
char *Get(void)
{
char p[]="hello world";
return p;
}
int main(void)
{
char *str=NULL;
str=Get();
printf(str);
}


6楼
这样可能是你想要的结果!!
char *Get(void)
{
char p[]="hello world";
char *a;
strcpy(a,p);
return a;
}
int main(void)
{
char *str=NULL;
str=Get();
printf(str);
getch();
}
char *Get(void)
{
char p[]="hello world";
char *a;
strcpy(a,p);
return a;
}
int main(void)
{
char *str=NULL;
str=Get();
printf(str);
getch();
}


10楼
char *Get(void)
{
char p[]="hello world";
return p;
}
这个函数在这里取什么作用,怎么看不明白了?
回复
打赏帖 | |
---|---|
【瑞萨RA2E1开发板】:使用ADC功能实现位移传感器采集方案被打赏20分 | |
【nRF7002DK】基于sht30的温湿度计被打赏20分 | |
【nRF7002DK】日志打印被打赏20分 | |
rtthread硬件加密-5hash加密分析被打赏10分 | |
【STM32F769】SD卡驱动及其调试经验分享被打赏32分 | |
【分享开发笔记,赚取电动螺丝刀】使用看门狗降低系统隐藏bug触发概率被打赏18分 | |
【STM32F769】调试SD驱动,由于其时钟配置不对引起的错误以及排查记录被打赏35分 | |
【分享开发笔记,赚取电动螺丝刀】MCUXpressoConfigTools配置外设时的异常解决被打赏24分 | |
C语言函数宏的三种封装方式被打赏50分 | |
【换取手持示波器】NUCLEO-F429ZI Mongoose移植被打赏30分 |