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));
link|improve this question

64% accept rate
Why can't you use strcpy or strcat? – Fred Larson Aug 2 '11 at 18:48
1  
Are you aware, that &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
feedback

4 Answers

up vote 0 down vote accepted

You are giving to the second memcpy the valye of the last array's element. The correct way is to give the address(with the ampersand operator (like it was implicitly meant in the second statement).

memcpy(&l->db.param_key.param_name[strlen(g->program_id_DB)+1],l->userId_const,sizeof(l->userId_const))
link|improve this answer
Amazing it worked thanks. – ken Aug 2 '11 at 18:54
feedback

The address in the third invocation should be:

l->db.param_key.param_name + strlen(g->program_id_DB) + 1

Note that for T * p, the expression p[i]; is identical to *(p + i). You don't want to dereference, you want the address, so you just add to the pointer.

(It is also true that p + i is identical to &p[i] as long as i is a valid index.)

Also mind @Nobody's observation that your first line is incorrect and you should just say l->db.param_key.param_name (or equivalently &l->db.param_key.param_name[0]).

link|improve this answer
feedback

use memcpy exactly like strcpy except you have to work with string size instead of string len.

link|improve this answer
feedback

your codeexample is a little bit horrible, but

memset(l->db.param_key.param_name,0,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)],l->userId_const,sizeof(l->userId_const));

should work, if l->db.param_key.param_name and l->userId_const are a char-arrays.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.