C++调用memset函数的时候出现错误提示:
error: 'memset' was not declared in this scope
出现此提示的原因是:没有引入头文件<string>,有些电脑必须要用<string.h>才可以,我类个去。。
#include <string>//这个不行就用下面的
#include <string.h>
C++调用memset函数的时候出现错误提示:
error: 'memset' was not declared in this scope
出现此提示的原因是:没有引入头文件<string>,有些电脑必须要用<string.h>才可以,我类个去。。
#include <string>//这个不行就用下面的
#include <string.h>
文章如无特别注明均为原创!
作者:
admin,
转载或复制请以
超链接形式 并注明出处 万捷博客。
原文地址《
error: 'memset' was not declared in this scope》发布于2019-6-17
您也可以使用第三方帐号快捷登录