填空题

下列程序的运行结果是______。
main()
int s=0,i=1;
while(s<= 10)
s=s+i*i;
i++;

printf("%d",-i);

【参考答案】

C