Xref: utzoo comp.lang.c:29142 comp.std.c:3108 Path: utzoo!attcan!uunet!aplcen!samsung!sol.ctr.columbia.edu!emory!utkcs2!wozniak From: wozniak@utkux1.utk.edu (Bryon Lape) Newsgroups: comp.lang.c,comp.std.c Subject: Arrays of pointers Message-ID: <1990May28.145851.2407@cs.utk.edu> Date: 28 May 90 14:58:51 GMT Sender: news@cs.utk.edu (USENET News System) Reply-To: wozniak@utkux1.utk.edu (Bryon Lape) Organization: University of Tennessee Computing Center, Knoxville Lines: 13 What I need to know is how to have a dynamic length array of fixed length character strings. Basically, I need an array of strings 14 characters long. I tried char *array[14] but this sets up an array for variable length strings (14 array elements). what I need is the opposite. Any ideas? -bryon lape- PS- I now this was discussed a few months ago, but I failed to pay attention since I did not need this info at that time.