// lp0227.c // C program for implementation of ftoa() #include #include #include #include // reverses a string 'str' of length 'len' void reverse(char *str, int len){ int i=0, j=len-1, temp; while (i