I not entirely sure how to phrase this, but can't figure out how to access a struct pointer within another struct. How would I print the values in struct first_name *hello, given the structs below. I can't figure out the syntax.
struct first_name
{
char *word
int number
};
struct last_name{
struct first_name *hello
int num2
};