这个程序源代码是如下
#include<stdio.h>
#include<string.h>
int main()
{int n,word=0,i;
char a[100];
printf("please enter a sting:");
scanf("%s",a);
n=strlen(a[10]);
for(i=0;i<=n;i++)
{if(a[i]!=' '&&a[i+1]==' ')
word++;}
printf("the string is %d",n);
printf("the total words is %d",word);
}
我用的是visual c++调试的,没有错误,运行的时候就出现了如图的情况,请问各位c语言的高手这是什么情况。这个程序有什么问题。谢谢了!