Christophe
Joined: 10 May 2005 Posts: 323 Location: Belgium
|
declaring arrays; binary notation of bytes possible? |
Posted: Mon Dec 05, 2005 7:29 am |
|
|
Hello,
I want to declare an array of bytes:
int8 data [22] = { 1 , 2 , 3 ...}
now the question is: is it possible to do the same in binary?
int8 data [22] = {00000001, 00000010, 00000011, ...)
thx |
|