通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有以下程序
#include <stdio.h> #include <stdlib.h> void fun(int*p1,int*p2,int*s) { s=(int*)malloc(sizeof(int)); *s=*p1+*p2; } main() { int a[2]={1,2}, b[2]={10,20},*s=a; fun(a,b,s); printf("%d\n",*s); }
程序运行后的输出结果是()。