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.
Hey guys, I have a question regarding unsigned char initialization as seen in this program. The programming language is C.
(const unsigned char[]){ 1,2, 3, 4, 5, 6, 7, 8, 9, 0}. Can someone explain to me how to read it from the function ?
Using a pointer and (const unsigned char[]){ '1','2', '3', '4', '5', '6', '7', '8', '9', '0'} works for me but I cant figure how to get the code running with the default setting.
Any help would be appreciated :). Thank you.
That's the
tab
escaped sequence, have you tried a literal white space?\t isnot working , how can i add whiteSpace in code ?