0_0_39217306_17378.cpp: In function 'int main()':
0_0_39217306_17378.cpp:11:30: error: 'strlen' was not declared in this scope
11 | int length = strlen(string);
| ^~~~~~
0_0_39217306_17378.cpp:4:1: note: 'strlen' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
3 | #include <string>
+++ |+#include <cstring>
4 | using namespace std;
0_0_39217306_17378.cpp:14:56: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
14 | if (string[i] <= '9' && string >= '0') {
| ~~~~~~~^~~~~~
|