为了账号安全,请及时绑定邮箱和手机立即绑定

Linux下 C语言范例编译后运行出错

Linux下 C语言范例编译后运行出错

慕标琳琳 2019-05-03 21:56:22
#include <stdio.h>char * fun();int * fun2();int main(){char *pp = fun();printf("%c %c %c %c \n",*pp,*(pp+1),*(pp+2),*(pp+3),*(pp+4));printf("%s\n",pp);int *aa=fun2();printf("%d %d %d %d\n",*aa,*(aa+1),*(aa+5),*(aa+9));}char * fun(){static char p[6]="hello";printf("fun=%s \n",p);}int * fun2(){static int a[10] = {0,1,2,3,4,5,6,7,8,9};return a;}在Linux编译pass, 运行时报警,如下: co@ubuntu:/usr/cel$ gcc -o array array.c co@ubuntu:/usr/cel$ ./arrayfun=hello Segmentation fault (core dumped)co@ubuntu:/usr/cel$
查看完整描述

2 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

你这个函数 都没返回值, pp指向指针

追问

怎么改呢?小白,麻烦尽量回复谢谢


查看完整回答
反对 回复 2019-05-03
  • 2 回答
  • 0 关注
  • 661 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信