show/hide this revision's text 3 added 348 characters in body
char   somestring[] = "Send money!\n";
char   *copy;
size_t copysize;

copysize = strlen(somestring)+1;
copy = (char *) malloc(copysize);
if (copy == NULL)
    bail("Oh noes!\n");

strncpy(copy, somestring, copysize);
printf("%s", copy);

Noted differences above:

  • Result of malloc() must be checked!
  • Compute and store the memory size!
  • Use strncpy() because strcpy() is naughty. In this contrived example it won't hurt, but don't get into the habit of using it.

EDIT:

To those thinking I should be using strdup()... that only works if you take the very narrowest view of the question. That's not only silly, it's overlooking an even better answer:

char somestring[] = "Send money!\n";
char *copy = somestring;
printf(copy);

If you're going to be obtuse, at least be good at it.

show/hide this revision's text 2 Replaced printf(copy) with printf("%s", copy).... tsk tsk
char   somestring[] = "Send money!\n";
char   *copy;
size_t copysize;

copysize = strlen(somestring)+1;
copy = (char *) malloc(copysize);
if (copy == NULL)
    bail("Oh noes!\n");

strncpy(copy, somestring, copysize);
printf(copy)printf("%s", copy);

Noted differences above:

  • Result of malloc() must be checked!
  • Compute and store the memory size!
  • Use strncpy() because strcpy() is naughty. In this contrived example it won't hurt, but don't get into the habit of using it.
show/hide this revision's text 1
char   somestring[] = "Send money!\n";
char   *copy;
size_t copysize;

copysize = strlen(somestring)+1;
copy = (char *) malloc(copysize);
if (copy == NULL)
    bail("Oh noes!\n");

strncpy(copy, somestring, copysize);
printf(copy);

Noted differences above:

  • Result of malloc() must be checked!
  • Compute and store the memory size!
  • Use strncpy() because strcpy() is naughty. In this contrived example it won't hurt, but don't get into the habit of using it.