home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_10_02
/
1002109b
< prev
next >
Wrap
Text File
|
1991-12-04
|
310b
|
14 lines
int index;
#define SIZE_OUT_STRINGS 4
char *out_strings[SIZE_OUT_STRINGS]
= {"zero", "one", "two", "lots"};
if (x < 0 || x >= SIZE_OUT_STRINGS - 1)
index = SIZE_OUT_STRINGS - 1;
else
index = x;
printf ("The value is '%s'\n", out_strings[index]);