I am trying to concatenate single digits to a string:
include <stdio.h>
include <stdlib.h>
include <string.h>
int main() {
char *test="";
int i;
for (i = 0; i < 10; i++)
char *ic;
ic = malloc(2);
sprintf(ic, "%d", i);
// printf("%d\n", strlen(test));
if (strlen(test) == 0)
test = malloc(strlen(ic));
strcpy(test, ic);
} else {
realloc(test, strlen(test) + strlen(ic));
strcat(test, ic);
}
}
printf("%s\n", test);
// printf("%c\n", test);
free(test);
test = NULL;
return 0;
}
My goal is for the result of the final printf ("%s", test)
be 0123456789
.
Remember that strings are terminated with null characters. When you allocate memory for a string, you must add an extra byte for the null. So you'll need to add 1 to each of your
malloc()
andrealloc()
calls. For example:Remember, also, that
realloc()
is allowed to "move" a variable to a new location in memory. It may need to do that in order to find enough contiguous unallocated space. It can also returnNULL
if it's unable to allocate the memory you've requested, so you should call it like this: