其他分享
首页 > 其他分享> > YDOOK: C语言 MDK5:main.c(57): warning: #223-D: function “strlen“ declared implicitly 警告处理

YDOOK: C语言 MDK5:main.c(57): warning: #223-D: function “strlen“ declared implicitly 警告处理

作者:互联网

YDOOK: C语言 MDK5:main.c(57): warning: #223-D: function “strlen” declared implicitly 警告处理

© YDOOK JY Lin


文章目录


1. 问题原因:

问题类型:C语言的标准库没有引入。

在 MDK5 中使用 C语言编程时,会出现 function "xxx" declared implicitly 的警告,原因在于在:main.h 中没有引入 :#include "stdlib.h"


2. 问题解决:

main.h 中引入 :#include "stdlib.h" 即可:

/* Includes ------------------------------------------------------------------*/
#include "stm32f1xx_hal.h"
#include "stdlib.h"
/* Exported types ------------------------------------------------------------*/
/* Exported constants --------------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
/* Exported functions ------------------------------------------------------- */

#endif /* __MAIN_H */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

YDOOK


结果展示:




标签:function,declared,main,C语言,stdlib,include,strlen
来源: https://blog.csdn.net/weixin_42255190/article/details/115553379