SyntaxFix
Write A Post
Hire A Developer
Questions
That's because itoa isn't a standard function. Try snprintf instead.
itoa
snprintf
char str[LEN]; snprintf(str, LEN, "%d", 42);