QuestionId

The QuestionId structure is used by GetQuestionId to return the question ID, given the question group name, question name, and occurrence subset number.

Syntax

typedef struct question_id
{
    char group_name[GROUP_SIZE+1];
    char question_name[QUESTION_SIZE+1] ;
    int qn_occurence_sn;
} QuestionId;

Parameters

group_name (in): the name of its question group.

question_name (in): the name of the question.

qn_occurrence_sn (in): the occurrence subset number.

Used in Function

GetQuestionId