执行以下操作是否安全?
#include <stdio.h>
#include <malloc.h>
#include <string.h>
int main(void)
{
char* msg;
strcpy(msg, "Hello World!!!"); //<---------
printf("%s\n", msg);
return 0;
}
还是应该使用以下内容?
char* msg = (char*)malloc(sizeof(char) * 15);