#include <stdio.h> #include <string.h> #include <alloc.h>
void main() { char *buffer,*str; buffer=(char*)malloc(sizeof(buffer));/*这句是用来做什么的,不用为什么就无法正确显示?*/ str=memset(buffer,'A',10); printf("%s\n",str); }