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