5
crisz
6y

How many of you want to live in a world where there's no a standard way to convert numbers to strings among systems?

Comments
  • 0
    char bfr[20] = {0};

    sprintf(bfr, "%d", yournumber);

    Seems pretty standard to me
Add Comment