gcc error : undefined reference to `itoa’

itoa is a non-standard function which is supported by some compilers. Going by the error, it’s not supported by your compiler. Your best bet is to use snprintf() instead.

Leave a Comment