2016年4月22日

C语言中的深拷贝和浅拷贝

摘要: //C语言中的深拷贝和浅拷贝 #define _CRT_SECURE_NO_WARNINGS #include #include #include typedef struct _student{ char name[30]; char *title; int age; }Student; void main(){ Student s1; Stud... 阅读全文

posted @ 2016-04-22 16:23 寒魔影 阅读(4543) 评论(0) 推荐(0) 编辑

导航