20
10
coz struct is value type so it will assign different memory for both object.but if you will change struct with class then result will be
20
20
coz class is reference type and it will not assign different memory for different objects of a class.