I\'ve declared a byte array (I\'m using Java):
byte test[] = new byte[3]; test[0] = 0x0A; test[1] = 0xFF; test[2] = 0x01;
How could I print the
for (int j=0; j