无情秋天

文章
5
资源
0
加入时间
3年0月9天

数组循环存储覆盖

结构体赋值#include <stdio.h>#include <string.h>typedef struct{ int num; char name[6]; short height;} STR_STU; int main(){ STR_STU xm = {0}; STR_STU xh = {0}; xm.num = 1000; xm.height = 169; memcpy(xm.name,"ad",4); pri