2019年6月7日

c语言创建单链表

摘要: //创建单链表 #include <stdio.h>#include <string.h>#include <stdlib.h>typedef struct Student STU; //用typedef 新定义结构体名字为 STU;struct Student //定义时不能直接用STU{ cha 阅读全文

posted @ 2019-06-07 20:20 滴水石川的小白 阅读(3738) 评论(0) 推荐(0)

错误: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. 的处理方法

摘要: 错误: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. 的处理方法 为什么会报这个错?因为strcpy这个函数不安全,即会造成栈溢出。 在VS2013下如 阅读全文

posted @ 2019-06-07 19:46 滴水石川的小白 阅读(3480) 评论(0) 推荐(0)

导航