I have a function that joins two constant char* and returns the result. What I want to do though is join a char to a constant char* eg

char *command = "nest";
char *halloween =  join("hallowee", command[0]);   //this gives an error

char *join(const char* s1,  const char* s2)
{
    char* result = malloc(strlen(s1) + strlen(s2) + 1);

    if (result)
    {
            strcpy(result, s1);
            strcat(result, s2);
    }

    return result;
}
link|improve this question

69% accept rate
feedback

3 Answers

up vote 3 down vote accepted

The function you wrote requires two C-strings (i.e. two const char * variables). Here, your second argument is command[0] which is not a pointer (const char *) but a simple 'n' character (const char). The function, however, believes that the value you passed is a pointer and tries to look for the string in memory adress given by the ASCII value of the letter 'n', which causes the trouble.

EDIT: To make it work, you would have to change the join function:

char *join(const char* s1,  const char c)
{
    int len = strlen(s1);
    char* result = malloc(len + 2);

    if (result)
    {
            strcpy(result, s1);
            result[len] = c;         //add the extra character
            result[len+1] = '\0';    //terminate the string
    }

    return result;
}
link|improve this answer
well I understand that, I could change the parameters that the function takes but still, strcpy() and strcat() require canst char*.. and what i have is a simple char. So i need to do something to command[0] so i can use it with strcpy() and strcat(). Thanks – user870565 Aug 23 '11 at 11:04
sorry, hadnt refreshed my page. let me have a look at you edit – user870565 Aug 23 '11 at 11:06
thanks, i wanted to avoid changing the function itself because i use it somewhere else to join two const chars*. All the same Thank you, il just create another one for that purpose. :-) – user870565 Aug 23 '11 at 11:13
feedback

If you wish to join a single character, you will have to write a separate function that takes the quantity of characters from s2 to append.

link|improve this answer
feedback

The best is to create a new function that allows adding a single char to a string. But if you would like to use the join() function as it is for some reason, you can also proceed as follows:

char *command = "nest";
char *buffer  = " "; // one space and an implicit trailing '\0'
char *halloween;

*buffer = command[0];
halloween = join("hallowee", buffer);  
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.