解决warning: incompatible implicit declaration of built-in function 'strlen'
·
c语言编译时,对于类似于warning: incompatible implicit declaration of built-in function 'strlen'的警告,可通过添加相应的头文件来消除。
如strlen、strcpy等对字符串的操作函数,需要添加#include <string.h>
如malloc、free等对内存的操作函数,需要添加#include <stdlib.h>
更多推荐
已为社区贡献1条内容
所有评论(0)