#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;
}
这个函数在这里取什么作用,怎么看不明白了?
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |