Question: Simon Says is a memory game where Simon' outputs a sequence of 10 characters (R, G, B.Y) and the user must repeat the sequence. Create

"Simon Says" is a memory game where "Simon' outputs a sequence of 10 characters (R, G, B.Y) and the user must repeat the sequence. Create a for loop that compares the two strings starting from index 0. For each match, add one point to userScore. Upon a mismatch, exit the loop using a break statement. Assume simonPattern and userPattern are always the same length. Ex The following patterns yield a userScore of 4: simonPattern: RRGBRYYBGY userPattern: RRGBBRYBGY 6 7 324758.2040686.qx3zqy7 3 4 int main(void) { 5 char simonPattern[50]; char userPattern(50); int userScore; 8 int i; 9 10 userscore = 0; 11 scanf("%s", simonPattern); 13 scanf("%s", userPattern); 14 15 * Your solution goes here */ 16 17 printf("userscore: %d ", userscore); 18 19 return; 20} 12
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
