通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
阅读程序,写出程序运行结果。
#include <stdio.h> void main(void) { int a[]={12,30,15,57,69},*pa=&a[3]; while (*pa!=30) printf("%d,", *(--pa)); }