0_0_39443445_41.cpp: In function 'void getFail()':
0_0_39443445_41.cpp:11:16: error: 'strlen' was not declared in this scope
11 | int len = strlen(p);
| ^~~~~~
0_0_39443445_41.cpp:3:1: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
2 | #include<algorithm>
+++ |+#include <cstring>
3 | const int N = 1000000+5;
0_0_39443445_41.cpp: In function 'int KMP()':
0_0_39443445_41.cpp:28:16: error: 'strlen' was not declared in this scope
28 | int lent = strlen(t),lenp = strlen(p);
| ^~~~~~
0_0_39443445_41.cpp:28:16: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
0_0_39443445_41.cpp:33:21: error: 'lenp' was not declared in this scope; did you mean 'lent'?
33 | if(j == lenp) num++;
| ^~~~
| lent
0_0_39443445_41.cpp: In function 'int main()':
0_0_39443445_41.cpp:47:19: error: 'strlen' was not declared in this scope
47 | int len = strlen(p);
| ^~~~~~
0_0_39443445_41.cpp:47:19: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
|