Logo

Programming-Idioms

History of Idiom 55 > diff from v3 to v4

Edit summary for version 4 by :

Version 3

2015-08-19, 15:29:42

Version 4

2015-08-19, 15:31:02

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Imports
#include <stdlib.h>
Code
char s[0x1000]={};
itoa(i,s,10);