practice 3-6: write a funtion itoa(n,s,width) that could
receive the width ,which is the legal least charactor width.if s[]
's width
#include
void itoa(int n,char s[],int width);
void reverse(char s[]);
main()
{
}
void itoa(int n,char s[],int width)
{
}
void reverse(char s[])
{
}