haven't used C in a while....so this might be really simple for most of you....

can someone please tell me how to concatenate two char * strings?

eg.
char * c1 = "SYSTEM PATH = "
char *c2 = getenv("PATH");

how do I concatenate c1 + c2 and put the result into a third char * variable?

Thanks very much.