home *** CD-ROM | disk | FTP | other *** search
- /* Prog 1_2a -- Convert a numeric ASCII string into a number
- by Stephen R. Davis, 1987
-
- This is the 'first shot' crude attempt which the non-thinking
- programmer is likely to settle for. It's problems are that it
- is limited to base 10 and that it must have special logic to
- take care of leading zeroes, etc.
- */
-
- #include <stdio.h>
-
- /*prototype definitions --*/
- int main (void);
- void convnum (int, char *);
-
- /*ConvNum - given a number and a buffer, place the ASCII
- presentation of the number into the buffer*/
- void convnum (number, buffer)
- int number;
- char *buffer;
- {
- int basenum,nextpower,digit;
-
- if (number < 0) { /*if neg, attach leading '-'*/
- number = -number;
- *buffer++ = '-';
- }
- basenum = 1; /*find power of 10 to start*/
- while ((nextpower = basenum * 10) <= number)
- basenum = nextpower;
-
- for (;basenum; basenum /= 10) { /*divide repeatedly by 10...*/
- digit = number / basenum;
- number -= digit * basenum; /*...saving the residue*/
- *buffer++ = (char)(digit + '0');
- }
- *buffer = '\0';
- }
-
-
- /*Main - test the above conversion routine*/
- int test[] = {1, 10, 100, 1000, -1, -15, -25, -35, 0};
- main ()
- {
- int i;
- char buffer[25];
-
- i = 0;
- do {
- convnum (test [i], buffer);
- printf ("%s\n", buffer);
- } while (test[i++]);
- printf ("\nfinished\n");
- }