How can i set a character array say of size 100 to whitespace and then copy 10 charters to that same string from other. For example:

there is one char array a[100] To do : set all of it to whitespace

Now there is another array : b[10] (suppose this is filled with some string of length 9) To do : copy this array to the previous one

What iam doing is : memset(a, ' ', sizeof(a));
350         memcpy(a,b, strlen(b))

But iam not getting space that i had set after 10 chars has been copied .

link|improve this question

What do you mean with not getting the space? – Daniel Fischer Jan 13 at 12:21
1  
If you terminate a after the memset (like a[sizeof(a) - 1] = '\0') it should work. – Joachim Pileborg Jan 13 at 12:22
What exactly do you mean? How do you check your array? Printf? – Toby Jan 13 at 12:31
You're not doing what you say you are doing. ideone ( ideone.com/SmnM9 ) does what you say you are doing without problems. – pmg Jan 13 at 12:33
feedback

4 Answers

up vote 1 down vote accepted

Try the following:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define LENGTH 100

int main(int argc, char *argv[])
{
    char *a = NULL;
    char b[10] = "abcdefghi"; /* note that this has a trailing null character */

    a = malloc(LENGTH + 1);
    if (a) {
        *(a + LENGTH) = '\0';
        memset(a, ' ', LENGTH);
        fprintf(stdout, "a (before):\t[%s]\n", a);
        memcpy(a, b, sizeof(b) - 1); /* strip trailing null */
        fprintf(stdout, "a (after):\t[%s]\n", a);
        free(a);
    }

    return EXIT_SUCCESS;
}

Running this:

$ gcc -Wall test.c
$ ./a.out
a (before):     [...100 spaces...........]
a (after):      [abcdefghi...91 spaces...]                                                                                           ]
link|improve this answer
*(a+LENGTH) should be a[LENGTH] - that's what [] were meant for. – ugoren Jan 13 at 13:03
Either syntax should be correct. – Alex Reynolds Jan 13 at 13:14
LENGTH[a] would also be correct. But which is the clearest? – ugoren Jan 13 at 19:06
That's a subjective call that I don't have an opinion about. Pointer arithmetic and array indexing are syntactically correct and, as far as the compiler goes, equivalent in effect. – Alex Reynolds Jan 13 at 19:19
feedback

You are missing the null \0 character at the last position of the array.

link|improve this answer
feedback
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(void){
    char a[101] = {0};
    char b[] = "123456789";
    memset(a,' ',100);
    memcpy(a,b,strlen(b));
    printf("%s!\n",a);
    return 0;
}

works as expected. I get 123456789 followed by 91 spaces, then "!\n", as it should be. If you want to have the string terminated after the memcpy'd part, you have to memcpy strlen(b)+1 bytes to include the 0-terminator or manually set a[strlen(b)] = 0.

link|improve this answer
feedback

You'll see. Try the following code:

for (int i = 0; i <= 99; i++)
    printf("%c", a[i]);
printf("\n");

The reason is when you memcpy the string to a, a NULL character is placed in a[10]. If you only output a, the output will stop just before the NULL.

link|improve this answer
Thats actually not correct. Strlen returns the number of characters without the null termination character. When his string his ( as mentioned ) 9 characters long, strlen will return also 9. Since the return value of strlen is also his paramter for memcpy, memcpy will also just copie 9 byte. This means the null termination character will NOT be copied! – Toby Jan 13 at 12:31
@toby: thanks, corrected. – Donotalo Jan 13 at 12:33
feedback

Your Answer

 
or
required, but never shown

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