Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Using calloc, the allocated space for the answer is set to zeros. The answer can't be more than 58 chars with the NULL terminator, so what gives?
without seeing you code, I'm gonna take a wild guess you're forgetting the NULL terminator
you have to return a dynamically allocated string
did you include the first test from the sample tests in your foreign environment? because one possibility is that you are trying to
access
theNULL
array on CW which has no validmemory
...