ahh..
I didnt know
any 'C' functions..etc were 'legal' to use.. I thought only what was listed in the reference link(s) was what was available to use Arduino users..
Initialization of such an array is left as an exercise for the student.
what do you mean by that?
When you say 'pointers'.. do you mean like variables? I dont understand the * in the statement/function
I do know 2D+ arrays..
but I have never had to 'deal' with characters and the arrays are defined a bit different (and we have datatyping too)
example of what Im used to doing...
var someArray:Array = new Array();
someArray.push("Some string");
or:
var someArray:Array = new Array("Jon", "Billy", "Mandy");
or even
var someArray = ["value1", "value2", "value3"];
object arrays: (named values/pairs)
var someArray = [{name1:"value1", name2:"value2", name3:"value3"})];
and of course call or taget any value as such:
var valueCheck = someArray[0] //outputs: value1
for named pairs:
var valueCheck = someArray[0].name1 //outputs: value1
so Im just trying to bridge how arrays are used in the Arduino (C) environment.
I cant picture your 2D arrays..or you pointer type arrays.
Thanks