I've made a new node. How do I refer node->question->question, node->question->options[], node->question->correctans and node->question->difficulty_level
struct node {
    node *prev;
    node *next;
    int count; 
    Question question[];
};
struct Question{
    String question;
    String[] options;
    String correctans;
    int difficulty_level;
}
 
     
    