MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / main

Function main

Project_Quiz_Game/quiz-game.cpp:904–926  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

902void scores_table();
903
904int main() {
905 int user_choice;
906 user_choice = main_menu_view();
907 if (user_choice) {
908 question1();
909 question2();
910 question3();
911 question4();
912 question5();
913 question6();
914 question7();
915 question8();
916 question9();
917 question10();
918 after_game();
919 scores_table();
920 return 0;
921 }
922 else {
923 return 0;
924 }
925 return 0;
926}
927
928void scores_table()
929{

Callers 1

scores_tableFunction · 0.70

Calls 13

question1Function · 0.85
question2Function · 0.85
question3Function · 0.85
question4Function · 0.85
question5Function · 0.85
question6Function · 0.85
question7Function · 0.85
question8Function · 0.85
question9Function · 0.85
question10Function · 0.85
after_gameFunction · 0.85
scores_tableFunction · 0.85

Tested by

no test coverage detected