有劳各位大佬帮我看看哪里错了
#include <stdio.h>#include <string.h>
char op(char *ptr);
int main()
{
char *we="ghjhjfjfgjfgjfhdfghdfhgdhdhgjgjfgjfgj";
op(we);
return 0;
}
char op(char *ptr)
{
int a;
for(a=0;a<strlen(ptr);a++)
{
printf("数组是%s\n",ptr[a]);
}
return 0;
}
每次运行时 都会错误 不知道为什么 大佬们 帮帮忙 拜谢