input/code.cpp: In function 'int main()':
input/code.cpp:24:8: error: 'strlen' was not declared in this scope
if (strlen(v[i]) != strlen(v[j]))
^~~~~~
input/code.cpp:24:8: note: suggested alternative: 'mbrlen'
if (strlen(v[i]) != strlen(v[j]))
^~~~~~
mbrlen
input/code.cpp:27:24: error: 'strlen' was not declared in this scope
for (int k = 0; k < strlen(v[i]); k++)
^~~~~~
input/code.cpp:27:24: note: suggested alternative: 'mbrlen'
for (int k = 0; k < strlen(v[i]); k++)
^~~~~~
mbrlen
input/code.cpp:12:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%50s", v[i]);
~~~~~^~~~~~~~~~~~~~