动态申请空间出现的乱码问题
#include<stdio.h>#include<stdlib.h>
#include<string.h>
void Test(void)
{
char *ptr = (char *)malloc(20066);
strcpy(ptr,"helloWorld");
free(ptr);
if(ptr!=NULL)
{
int i;
strcpy(ptr,"world");
printf(ptr);
}
}
int main()
{
Test();
return 0;
}
为什么会出现乱码现象?