如何修改此编程中的错误
在主函数中输入一个英文句子,编写函数将其中的每个单词的首字符变成大写,最后在主函数中输出结果字符串。拜托大神帮忙看下如何修改错误
cpp(21) : error C2664: 'JC' : cannot convert parameter 1 from 'char' to 'char []'
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
#include<stdio.h>
#include<string.h>
char JC(char s[])
{ int i,j;
scanf("%d,%d",&i,&j);
for(i=0;s[i]='\0';i++)
{if(j==0&&s[i]<=97&&s[i]>=122||s[i]>=65&&s[i]<=90)
{j=1;
continue;
}
if(j==0&&s[i]>=96&&s[i]<=123||s[i]<=64&&s[i]>=89)
{s[i]=-32;
j=1;
}
}
}
void main()
{ char x[100],y[100];
char JC(char s[100]);
gets(x);
y[100]=JC(x[100]);
puts(y);
}