Xref: utzoo comp.lang.c:29156 comp.std.c:3109 Path: utzoo!attcan!uunet!jarthur!usc!apple!snorkelwacker!bloom-beacon!eru!luth!sunic!lth.se!E89HSE@rigel.efd.lth.se From: e89hse@rigel.efd.lth.se Newsgroups: comp.lang.c,comp.std.c Subject: Re: Arrays of pointers Message-ID: <009375FB.7DA0D5C0@rigel.efd.lth.se> Date: 29 May 90 03:34:18 GMT References: <1990May28.145851.2407@cs.utk.edu> Sender: newsuser@lth.se (LTH network news server) Reply-To: e89hse@rigel.efd.lth.se Organization: Lund Institute of Technology,Lund, Sweden Lines: 14 In article <1990May28.145851.2407@cs.utk.edu>, wozniak@utkux1.utk.edu (Bryon Lape) writes: > 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? Try with: char (*array)[14]; or maybe even char (*array)[14+1]; Henrik Sandell