帮帮我改改,为什么错呢
#include "stdio.h"main()
{ int tongji( char str1,int l,int int m,int n,int o);
char str1[100];
int a=0;
int b=0;
int c=0;
int d=0;
gets(str1);
tongji(str1[00],a,b,c,d);
printf("zimushu shuzishu konggegsu \n");
printf("%d%d%d%d",a,b,c,d);
}
int tongji(char str,int l,int m,int n,int o )
{char str[100];
int l=0;
int m=0;
int n=0;
int o=0;
for(i=0;str[i]!='\0';i++)
{if(str[i]>=65&&str[i]<=90||str[i]>97&&str[i]<=122) l++;
else if(str[i]==32) m++;
else if(str[i]>=48&&str[i]<=57)n++;
else o++;}
}