新手请教关于TC的问题?
我在网上下了一个TC2.0,并运行了一个小程序,但有两个错误不知何解?
#include<stdio.h>
main()
{
int n=0;
printf("input a string\n");
loop:if(gethar()!='\n')
{
n++;
goto loop;
}
printf("%d",n)
}
Error:1.unable to open include file "STDIO.H".
2.statement missing :in funtion main.