struct union1, string as char[9] struct union2, number as double, pad as char[1] union2.struct = union1.struct union1.string.struct = chr$(119)+chr$(190)+chr$(159)+chr$(26)+ _ chr$(47)+chr$(221)+chr$(94)+chr$(64) print union2.number.struct
struct union1, string as char[9] struct union2, number as double, pad as char[1] struct temp, temp as ptr union1.string.struct = chr$(119)+chr$(190)+chr$(159)+chr$(26)+ _ chr$(47)+chr$(221)+chr$(94)+chr$(64) temp.temp.struct = union1.struct union2.struct = temp.temp.struct print union2.number.struct