Does the order of elements within a struct matter?
struct Person {
int age;
String name;
}
vs
struct Person {
String name;
int age;
Does the order of elements within a struct matter?
struct Person {
int age;
String name;
}
vs
struct Person {
String name;
int age;