下列程序运行后的输出结果是__________。
#include “stdio.h”
main()
{ int a [ ]={1,3,5,7,9,11,13},*p=a+1,*q=NULL;
q=p+3;
printf(“%d,%d\n”,*p,*q);
}
3,9