[Error] 'strlen' was not declared in this scope

在写编译原理实验的时候,遇到了这个错误:

[Error] 'strlen' was not declared in this scope

查阅之后得知,<string.h>里没有strlen,<cstring>才有。

#include<cstring>

 头头儿加上这行就好了。

上一篇:Type Traits


下一篇:C语言的输入