Hi oookey,
Within suplementry code you have got:
Code: Select all
char num[] = {
63, 6, 91, 79, 102, 109, 124, 7, 127, 103}; //
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
I believe you wanted to comment out:
if you want the commented numbers on the next line down then the two forward slashes have to be placed first:
Code: Select all
char num[] = {
63, 6, 91, 79, 102, 109, 124, 7, 127, 103};
// 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Or
Code: Select all
rom char* num = {
63, 6, 91, 79, 102, 109, 124, 7, 127, 103};
// 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Or same line:
Code: Select all
rom char* num = {
63, 6, 91, 79, 102, 109, 124, 7, 127, 103}; // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Martin