Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Quick question for C

  • 11-02-2004 05:05PM
    #1
    Registered Users, Registered Users 2 Posts: 15,817 ✭✭✭✭


    Is there a function in any C library for converting a int (16-bit) into a string of ascii chars (8-bit)?

    I don't want to go trying to write a slipshod inefficient version myself if one exists as standard already :)

    ...and time and memory are factors.

    example of what I want to do:
    int var_name = 2457;
    [i]changetoascii[/i](var_name, char_array);
    

    returns a char string to [2,4,5,7].

    Anyone know of such a function?


Comments

  • Closed Accounts Posts: 1,651 ✭✭✭Enygma


    Ask yourself what happens when you divide a number by 10.

    What happens when you use the % operator?


  • Closed Accounts Posts: 286 ✭✭Kev


    sprintf


  • Registered Users, Registered Users 2 Posts: 4,127 ✭✭✭deadl0ck


    Or CString.Format if you're using MFC in C++


  • Closed Accounts Posts: 30 Lu[ifer


    try itoa()


Advertisement