the following line does not give any errors:
Code:
QUESTION quest1 = {"How many wheels are on a car?","5.","A) 2 B) 3 C) 4 D) 5 .", 4, false, &quest2, &quest1};
.....yet this line gives 3 errors:
Code:
    quest1 = {"How many wheels are on a car?","5.","A) 2 B) 3 C) 4 D) 5 .", 4, false, &quest2, &quest1};
the error is with sytax:

C:\Documents and Settings\Administrator\Desktop\ct\questions.cpp(23 8) : error C2059: syntax error : '{'
C:\Documents and Settings\Administrator\Desktop\ct\questions.cpp(23 8) : error C2143: syntax error : missing ';' before '{'
C:\Documents and Settings\Administrator\Desktop\ct\questions.cpp(23 8) : error C2143: syntax error : missing ';' before '}'