Struct element order

2 posts / 0 new
Last post
Offline
Last seen: 1 year 2 months ago
Joined: 04/22/2019
Posts: 5
Does order of elements within struct matter?

Does the order of elements within a struct matter?

 

struct Person {

  int age;

  String name;

}

vs

struct Person {

  String name;

  int age;

Organization:
Subscribe to RSS - Struct element order