单项选择题

以下程序的输出结果是______。
main()
{ int i,j,m=0;
for (i=1;i<=15;i+=4)
for(j=3; j<=19; j+=4) m++;
printf("%d\n",m);
}

A.12
B.15
C.20
D.25