I'm trying to concatenate two string and I cannot use strcpy and strcat, so I'm trying to do this through memcopy. However, on the third statement the memcpy it is not adding on to the continuation of the first memcpy. Any idea how to do this?
memset(&l->db.param_key.param_name, ' ', sizeof(l->db.param_key.param_name));
memcpy(l->db.param_key.param_name,g->program_id_DB,(strlen(g->program_id_DB)));
memcpy(l->db.param_key.param_name[strlen(g->program_id_DB)+1],l->userId_const,sizeof(l->userId_const));
strcpyorstrcat? – Fred Larson Aug 2 '11 at 18:48&l->...within memset will lead to overwriting the pointer to the string you want to edit? Leave out the&. Also this sounds to me like homework. If so then please tag accordingly. – Nobody Aug 2 '11 at 18:48