On Sep 30, 2002 at 10:05, Philip S Tellis wrote:
On Fri, 27 Sep 2002, Manish Jethani wrote:
char arg[4][30];
D'uh. While we were all looking at problems with the solutions, no one thought about relooking at the problem.
Fixed-size arrays are often (not always) bad. I usually try to malloc, and if I must have fixed-size, I try to #define the magic numbers.
Yeah, you can comment on my project after I submit it.