On Fri, 27 Sep 2002, Manish Jethani wrote:
char *arg[4];
And now that you know how to malloc, I'd like to suggest a better approach -
char arg[4][30];
D'uh. While we were all looking at problems with the solutions, no one thought about relooking at the problem.