C++ Course Logo
ԱՆՎՃԱՐ ՄԻԱՆԱԼ ԴԱՍԸՆԹԱՑԻՆTelegram
#include <iostream> int checkAnswers(char trueAnswers[], char givenAnswers[], const int TESTS) { // This function must calculate and return the total score return 0; } int main() { const int TESTS = 4; char trueAnswers[TESTS]= {}; char givenAnswers[TESTS]= {}; std::cout << "Insert true answers "; //put your code to fill array with true answers std::cout << "Insert given answers "; //put your code to fill array with given answers // call checkAnswers function here and print result }