Hi at ALL.
GLOBAL CODE:
int N[15] = {{2 3 4},{2 6 11}};
draw:
textnumber = N[0]; -> 2 3 4
textnumber = N[1]; -> 2 6 11
.....
not work. Why?
Tnk1000.
equinox wrote:Hi at ALL.
GLOBAL CODE:
int N[15] = {{2 3 4},{2 6 11}};
int N[15] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
int N[5][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}, {13, 14, 15}};
draw:
textnumber = N[0]; -> 2 3 4
textnumber = N[1]; -> 2 6 11
.....
not work. Why?
Fuzzy wrote:you have to fill in all 15 places and all numbers need to be separated with comma.
Users browsing this forum: No registered users and 1 guest