Convert int to string

I am doing a small project on freertos and Intel Galileo Gen2. I am having some trouble debuging my code and I need to get to terminal screen some numeric values to see what It is actually happening. When I try to use g_printf I only see: CC: (GNU) 4.8.2 I have tried also this commands: gprintf((char *)varname); gprintf(” “, varname); How can I convert int to string? Is there a way to print numeric values to the terminal? Thanks

Convert int to string

Is this a FreeRTOS question, or a C question? Converting an integer to a string http://pubs.opengroup.org/onlinepubs/009695399/functions/atoi.html

Convert int to string

Sorry, wrong link! http://pubs.opengroup.org/onlinepubs/7908799/xsh/sprintf.html

Convert int to string

It really was a question about C in freertos as I had already tried (incorrectly) sprintf. It works, like this: ~~~ sprintf(varST,”%d”,varname); g_printf(varST); ~~~ Thanks