A-A+
以下程序的输出结果是#include <stdio.h>main(){int j a[]={1 3 5 7 9 11 13 15} *p=a+5;
问题详情
以下程序的输出结果是#include <stdio.h>main(){ int j, a[]={1,3,5,7,9,11,13,15},*p=a+5; for(j=3; j; j--) { switch(j) { case 1: case 2: printf("%d",*p++); break; case 3: printf("%d",*(--p)); } }}