home *** CD-ROM | disk | FTP | other *** search
- /* Program 3_5 -- Reformat the input stream in one of 5 ways
- by Stephen R. Davis, 1987
-
- The input stream is output to stdout using one of 5 programs
- to perform the task. This is primarily meant as an example
- of using arrays of functions. Notice that this is really a
- form of self modifying code.
- */
-
- #include <stdio.h>
-
- /*prototype definitions --*/
- int main (void);
- void putlower (char *);
- void putupper (char *);
- void puthex (char *);
- void putoctal (char *);
- void putdecimal (char *);
-
-
- /*an array of pointers to functions returning nothing (void)*/
- char *fnames[5] = {"lower case ",
- "upper case ",
- "hex output ",
- "octal output ",
- "decimal output"};
- void (*func[5])() = {putlower,
- putupper,
- puthex,
- putoctal,
- putdecimal};
-
- /*Main - input a string a output it in 5 different ways*/
- main ()
- {
- char string[256];
- int choice;
-
- printf ("Input a character string (up to 15 characters)"
- "followed by return\n\n");
- while (gets(string)) {
- string [15] = '\0';
- for (choice = 0; choice < 5; choice++) {
- printf ("%s: ", fnames[choice]);
- (*func[choice])(string);
- printf ("\n");
- }
- }
- }
-
- /*example output routines*/
- void putlower (ptr)
- char *ptr;
- {
- for (; *ptr; ptr++)
- printf (" %c,", tolower(*ptr));
- }
- void putupper (ptr)
- char *ptr;
- {
- for (; *ptr; ptr++)
- printf (" %c,", toupper(*ptr));
- }
- void puthex (ptr)
- char *ptr;
- {
- for (; *ptr; ptr++)
- printf ("%3x,", (unsigned) *ptr);
- }
- void putoctal (ptr)
- char *ptr;
- {
- for (; *ptr; ptr++)
- printf ("%3o,", (unsigned) *ptr);
- }
- void putdecimal (ptr)
- char *ptr;
- {
- for (; *ptr; ptr++)
- printf ("%3u,", (unsigned) *ptr);
- }