First page Back Continue Last page Graphics
data structures
- #include <iostream>
- using namespace std;
- int main (void)
- { struct d1 { int ice; int cube; int h2o};
- struct d2 { char snow; d1 cry[3]; int age};
- d2 ary[4];
- ...
- Draw this data structure and give a reference for the h2o field of the “second” record in cary which is in the first entry of ary.