{
int id;
char username [6];
} user;
int main(void)
{
user *userr;
strncpy(userr->username, "hello", 3);
strcat(userr->username, ""0");
printf("userr->username=%s."n", userr->username);
return 0;
}
便已没有错误 运行时候有错误。 Userr的内存没有分配。
}
便已没有错误 运行时候有错误。 Userr的内存没有分配。
转载于:https://www.cnblogs.com/alexusli/archive/2009/01/22/1379958.html