0_0_35462473_4714.cpp: In function 'int find(char*)':
0_0_35462473_4714.cpp:6:35: error: 'strlen' was not declared in this scope
for (int i = 0; i < strlen(number); i++)
^
0_0_35462473_4714.cpp: In function 'int main()':
0_0_35462473_4714.cpp:25:38: error: 'strlen' was not declared in this scope
for (int i = 0; i < strlen(number1); i++)
^
0_0_35462473_4714.cpp:37:38: error: 'strlen' was not declared in this scope
for (int i = 0; i < strlen(number1) - point1 - 1; i++)
^
0_0_35462473_4714.cpp:44:38: error: 'strlen' was not declared in this scope
for (int i = 0; i < strlen(number2); i++)
^
0_0_35462473_4714.cpp:56:38: error: 'strlen' was not declared in this scope
for (int i = 0; i < strlen(number2) - point2 - 1; i++)
^
0_0_35462473_4714.cpp:63:22: error: 'strlen' was not declared in this scope
if (strlen(decimal1) == 1 && decimal1[0] == '0')
^
0_0_35462473_4714.cpp: In function 'void decimal_cal()':
0_0_35462473_4714.cpp:92:25: error: 'strlen' was not declared in this scope
int x = strlen(decimal1);
^
0_0_35462473_4714.cpp: In function 'void integer_cal()':
0_0_35462473_4714.cpp:123:25: error: 'strlen' was not declared in this scope
int x = strlen(integer1);
^
|