下面程序的输出结果是()main(){ int a,b,c; int *p; a=5; b=a+3; p=&a; c=*p+3; printf("%d,%d\n",*p,c);} A、5,8; B、5,5; C、8,5; D、8,8 发布时间:2025-08-13 02:55:44