Simple C array declaration / assignment question -
In high level languages I might be able to do something similar to this example in C and it will be fine.
int value [3]; If (1) value = {1,2,3}; Printf ("% i", value [0]);
Thanks.
You can declare a static array with data, start with:
Comments
Post a Comment