帮我看看 这个为什么出现内存错误。
#include <stdio.h>#include <string.h>
#include <stdlib.h>
void main()
{
char str1[]={"foewj"};
int a=strlen(str1);
printf("%d\n",a);
char *str2;
if((str2=(char *)malloc(a+3))==NULL)
{
printf("Memory error");
}
strcpy(str2,str1);
printf("%s\n",*str2);
}