Hi all,
I dont understand for this result.(maple r5 maple ide 12, win 8)
my code
uint16 courierNew9pt_BoldCharDescriptors[4][3] =
{
{ 9, 13, 1560 } , // \
{ 9, 13, 1586 } , // ]
{ 9, 13, 1612 } , // ^
{ 9, 13, 1638 } , // _
};
void setup()
{
delay(5000);
for(int i = 0; i< sizeof(courierNew9pt_BoldCharDescriptors)/sizeof(courierNew9pt_BoldCharDescriptors[0]); i++)
{
SerialUSB.print(i);
SerialUSB.print(": ");
SerialUSB.println(courierNew9pt_BoldCharDescriptors[i][2]);
}
}
void loop()
{
}
and my result:
0: 1560
1: 1612
2: 1638
3: 0
I understand. thx