Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!ocsmd!zeus!glenn From: glenn@zeus.ocs.com (Glenn Ford) Newsgroups: comp.lang.c Subject: Re: help with strcat Message-ID: <1229@ocsmd.com> Date: 5 Jun 91 14:15:55 GMT References: <1991Jun4.213935.5508@ms.uky.edu> Sender: news@ocsmd.com Distribution: comp Organization: Online Computer Systems, Germantown MD Lines: 9 In article <1991Jun4.213935.5508@ms.uky.edu> kherron@ms.uky.edu (Kenneth Herron) writes: > > while (*a && *b) > *d++ = *a++ + *b++; > *d = '\0'; This is not a strcat. Frankly, i don't know what your trying to do.. >How exactly did you want these strings combined? I think he wanted to concat string b onto string a..