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.
Hi good solution, i had the same idea of statical
However for turning yours
on one line you may use compound litteral (supported since C99) (see my solution)
What do you mean by this? Can you explain how it uses more memory?
You are correct; this prompts a warning:
format specifies type 'int' but the argument has type 'size_t'
.Since count is of type size_t, I think the format specifier should be %zu instead of %d.