-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnestedStructures.c
42 lines (40 loc) · 989 Bytes
/
nestedStructures.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Program to understand
* nested structures in C
*/
#include <stdio.h>
struct exercise {
const char *description;
float duration;
};
struct meal {
const char *ingredients;
float weight;
};
struct preferences {
struct meal food;
struct exercise exercise;
};
struct fish {
const char *name;
const char *species; int teeth;
int age;
struct preferences care;
};
void label(struct fish f) {
printf("Name: %s\n", f.name);
printf("Species: %s\n", f.species);
printf("%d years old, %d teeth\n", f.age, f.teeth);
printf("Feed with %f lbs of %s ", f.care.food.weight, f.care.food.ingredients);
printf("and allow to %s for %f hours.\n", f.care.exercise.description,
f.care.exercise.duration);
return;
}
int main () {
// initialization has to be done in the same order
// as declared in the structure
struct fish snappy = {"Snappy", "Piranha", 69, 4, { {"meat", 0.2},
{"swim in the jacuzzi", 7.5} } };
label(snappy);
return 0;
}