[求助]xp下的tc能够正确执行带参的main函数吗
#include<stdio.h>#include<ctype.h>
main(int argc,char *argv[])
{char *str;
int num=0;
if(argc<2) exit(1);
str=argv[1];
while(*str)
if(isalpha(*str++)) num++;
printf("\nThe count is:%d.\n",num);
}
这个程序会直接输出0, 为什么?