To allocate and free a single string in C, I do the following:
char[10] stringToCopy = "CopyString"; int length = strlen(stringToCopy) + 1; char* Co