gusano79 247 Posting Shark

I was able to compile this without changes using VS2013... what are you using?

kumanutiw commented: thax its now working ...... +0
gusano79 247 Posting Shark

The program should use two distinct structure-types to store the students’ scores: the 1st type used for keeping scores of 4 quizzes while the 2nd type is used to keep the scores of 2 exams.

Where are the structures that keep scores? You're missing them, and they're necessary for everything else, so start there.

adnan121 commented: struct Science { double exam[size]; }; struct Engineering { double quizzes[size]; }; union S_Eng_sci { Science S_exam; Engineering S_quizzes; } +0
gusano79 247 Posting Shark

Do you have a question you want answered? I don't see one.

Panathinaikos22 commented: he is noob +0
gusano79 247 Posting Shark

Please post the specific runtime error you're getting and also your code; we can't help if we don't know what you're doing.