[求助]为什么不能调用?
#include <stdio.h>
#include <string.h>
void cop(char sl,int m)
{
char st[100];
if(m>strlen(sl))
printf("输入的字符串过短或m太大!\n");
else
{
strcpy(st,sl+m);
printf("新的字符串为:%s",st);
}
}
void main()
{
char sl[100];
int m;
printf("请输入字符串sl以及m:\n");
scanf("%s%d",sl,&m);
cop(char sl,int m);
}