I would like to create a struct Person, which consists of two struct types and a variable inside. How can I initialize and use the struct Person then?
struct name{
   char *firstName;
   char *lastName;
} name;
struct address{
   char *street;
   int number;
} address;
struct person{
   struct name fullName;
   struct address fullAddress;
   int age;
} person;
 
     
    