Forum Discussion
3 Replies
- Altera_Forum
Honored Contributor
Either use sprintf() or itoa().
Jake - Altera_Forum
Honored Contributor
Or write your own. I have one. I'll see if I can find it.
Jake - Altera_Forum
Honored Contributor
sprintf() is the more standard way to do this. If you want something light weight use a loop and %10 and /10 operations to pluck out the characters (I'm pretty sure that's how itoa() works).