Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created May 2, 2015 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save shigemk2/b66cd2a4a7064aff2ce8 to your computer and use it in GitHub Desktop.
Save shigemk2/b66cd2a4a7064aff2ce8 to your computer and use it in GitHub Desktop.
#include <string.h>
#include <stdio.h>
int main() {
char a[10] = "some";
char b[10] = "day";
printf("%s\n", a); // some
strcat(a, b);
printf("%s\n", a); // someday
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment