. I am trying to parse these into a Multiple-Subscripted array such as; array
[d]. However I am getting the following compiling error "expected primary-expression before 'int'." Can someone help me with this? Thank you
[november_10.ino|attachment](upload://pvPl8aAujQvC07SOm1wAvAmjf3T.ino) (467 Bytes)
c and d must be defined before you use them. There is also no indication of the value. I also don't think you can use Strings that way in a two dimensional array.
@ KeithRB, I tried both your suggestions. For the first one, I did the following:
int c;int d;
String array
[ d];
and the compiler sais "array bound is not an integer constant." Also when I put in isdigit() it does not come up as a function in arduino's processing language.