单项选择题

下述程序的输出结果是( )。
#include<stdio.h>
main()
int i;
for(i=1;i<=10;i++)
if(i*i>=20)&&(i*i<=100))
break;

printf("%d\n",i*i);

A.49
B.36
C.25
D.64