show/hide this revision's text 2 deleted 2 characters in body
char *a = "stack overflow";
char *b = "new string, it's real";
int d = strlen(a);

b = malloc(d * sizeof(char));
b = strcpy(b,a);
printf("%s %s\n", a, b);
show/hide this revision's text 1

char *a = "stack overflow";

char *b = "new string, it's real";

int d = strlen(a);

b = malloc(d * sizeof(char));

b = strcpy(b,a);

printf("%s %s\n", a, b);