单项选择题

有以下程序:
#include <stdio.h>
main()
int i,s=0;
for(i=1;i<10;i+ =2) s+ =i+1;
printf("%d\n",s);
程序执行后的输出结果是( )。

A.正整数1~9的累加和
B.正整数1~10的累加和
C.正整数1~9中奇数之和
D.正整数1~10中偶数之和