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.
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 ?