Skip to content

Instantly share code, notes, and snippets.

@dafyddcrosby
Created July 30, 2013 13:00
Show Gist options
  • Save dafyddcrosby/6112685 to your computer and use it in GitHub Desktop.
Save dafyddcrosby/6112685 to your computer and use it in GitHub Desktop.
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
void main() {
char *str;
str = malloc(sizeof(char) * 15);
strcpy(str, "hakuna matata!"); // this line should copy "hakuna matata!"
// into our char array
printf("%s\n", str);
free(str);
// Anything else?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment