| 902 | void scores_table(); |
| 903 | |
| 904 | int 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 | |
| 928 | void scores_table() |
| 929 | { |
no test coverage detected