Why do I get this warning? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why do I get this warning?

Why do I get this warning saying that I implicitly declared tolower()? (Ignore the other warnings) Thank you🤗 https://code.sololearn.com/cUwhHRywUtYv/?ref=app

13th Jun 2021, 3:04 PM
Rishi
Rishi - avatar
2 Answers
+ 3
The tolower() function is defined in <ctype.h> header. You have not included it. Include it to remove the warning #include <ctype.h>
13th Jun 2021, 3:21 PM
XXX
XXX - avatar
0
XXX and Aditya thank you, I got it
13th Jun 2021, 4:00 PM
Rishi
Rishi - avatar