填空题

#include"stdio.h" main() {int i,s; s=0; for(i=0;i<=10;i++;s=s+i) printf("%d",s); } 错误:______ 改正:______

【参考答案】

错误:for(i=0;i<=10;i++;s=s+i)