Are Arduinos capable of using data structure?
http://www.cplusplus.com/doc/tutorial%20/structures/
If not, I can make arrays that would be linked other ways but this would be more convenient.
Are Arduinos capable of using data structure?
http://www.cplusplus.com/doc/tutorial%20/structures/
If not, I can make arrays that would be linked other ways but this would be more convenient.
Yes, you can use structs.
Arduino is programmed using standard C++. Arduino's specifics are just a bunch of functions that make it easy to work with the official (and compliant third-party) boards.
Thanks for the replies. I take it the syntax is the same then?
Yes. The Arduino is programmed in C/C++ using a standard C++ compiler (gcc). You can use any standard constructs. For your convenience there are Arduino libraries provided to encapsulate some of the features of the Amtel hardware but you don't have to use them. The IDE hides a little of this from you in that you don't provide main(), it does, and provides setup and loop instead to make the initial learning curve a bit less steep. You don't have to use the IDE either.