单项选择题

有以下程序:#include<stdio.h>main(){int i,s=0,t[]={1,2,3,4,5,6,7,8,9};for(i=0;i<9;i+=2)s+=*(t+i);printf("%d\n",s);}程序的运行结果是( )。

A.20
B.25
C.45
D.36