在写编译原理实验的时候,遇到了这个错误:
[Error] 'strlen' was not declared in this scope
查阅之后得知,<string.h>里没有strlen,<cstring>才有。
#include<cstring>
头头儿加上这行就好了。
2024-03-18 16:41:58
在写编译原理实验的时候,遇到了这个错误:
[Error] 'strlen' was not declared in this scope
查阅之后得知,<string.h>里没有strlen,<cstring>才有。
#include<cstring>
头头儿加上这行就好了。
下一篇:C语言的输入