engallam
Junior Member level 1
hi everybody
I have a problem in define array of bits in "mikroc pro for avr"
like
instead of
to save more memory
how can i do this
thanks a lot
I have a problem in define array of bits in "mikroc pro for avr"
like
Code:
bit x[2][5]= {{1,0,1,0,0},{1,1,1,0,1}};
instead of
Code:
int x[2][5]= {{1,0,1,0,0},{1,1,1,0,1}};
how can i do this
thanks a lot
Last edited by a moderator: