search
[last updated: 2024-08-02]
Arduino home page
(link to:) Arduino Programming Reference
-----
On This Page:
-----------------------------------------------------------------------
-----------------------------------------------------------------------
array of strings:
String paramList[3] = {"lat", "lng", "alt"};
https://forum.arduino.cc/t/a-true-array-of-strings-heres-how-i-did-it-us...
In this example "person" is the name of the struct data type, while firstName, lastName, and age are the elements of person, and each of them is defined with their respective data types (ie. String and int).
Or: person ID1 = {"John", "Smith", 47};
----------------------
-----------------------------------------------------------------------
-----------------------------------------------------------------------
----------------------
.
.
.
eof