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.
yes, the root author gets credited
added
approved
read the assertion message, not the line of code:
can be just
or even
this line could be made more readable by using character literals such as
'a'
and'0'
. or just set the buffer size to e.g.128
and use direct indexing; this is nowhere close to a noticeable memory footprintkinda stunned that it wasn't crashing when it was set to C11!
solution now is a standard one
X
goofiness removed (this was one of my first translations from 6 years ago, I've learned avoid things like that since)thanks much
that does not account for the nul terminator, hence the crash.
also, please don't golf the Solution panel, it has to be maintainable; same remark for things like
approved
removed, thanks
this cast has no effect.
array
is already an array ofint
, so whatever you store inside is going to be implicitely cast to anint
.approved.
language version needs to be upgraded to C18
fixed
closing as this particular behavior is indeed mentionned
should be fixed
Loading more items...