NXC: ... display print output problem
Posted: 04 Jan 2011, 21:20
hi,
I just came upon this issue:
this code works:
but this not:
why not?
I just came upon this issue:
this code works:
Code: Select all
for (int z=0;z<8;z++) {
NumOut(0,56-(z*8), (z&4)?1:0);
}
Code: Select all
for (int z=0;z<8;z++) {
TextOut(0,56-(z*8), (z&4)?"TRUE":"FALSE");
}