程序运行不了
程序代码:#include<stdio.h>
int main(int argc,char *argv[])
{
int count;
printf("The command line has %d arguments:\n",argc-1);
for(count=1;count<argc;count++)
printf("%d:%s\n",count,argv[count]);
printf("\n");
return 0;
}请问该程序要怎么运行?我用的是“VC++6.0”软件



