[Solved] Explain Working Logic Following Programs C Codes Required Q37249966

Explain the working logic of the following programsand C codes required.
a. University is building a spell-checker system, and you have been tasked with writing a program to determine how closely two words resemble each other. The algorithm is to compare the two words character by character, and count how many times the characters in a given position are the s character matching to be done with respect to position. For instance, the words “TICK” and “TOCK” have a score of 3, since three characters (T, C and K) are the same. Similarly, “CAT” and “DOG” score 0 since no letters match with respect to position. Similarly, “FANTASTIC” and “ANTASTİC” score 0, since no letters match with respect to position. You are to take input from user of two Strings A and B and you have to return an integer K indicating the score (as defined above) of how closely the two matches. ame? The b. Write a C program that takes user-id and password as input (type string). After 3 wrong attempts, user will be rejected. Show transcribed image text a. University is building a spell-checker system, and you have been tasked with writing a program to determine how closely two words resemble each other. The algorithm is to compare the two words character by character, and count how many times the characters in a given position are the s character matching to be done with respect to position. For instance, the words “TICK” and “TOCK” have a score of 3, since three characters (T, C and K) are the same. Similarly, “CAT” and “DOG” score 0 since no letters match with respect to position. Similarly, “FANTASTIC” and “ANTASTİC” score 0, since no letters match with respect to position. You are to take input from user of two Strings A and B and you have to return an integer K indicating the score (as defined above) of how closely the two matches. ame? The b. Write a C program that takes user-id and password as input (type string). After 3 wrong attempts, user will be rejected.
Expert Answer
Answer to Explain the working logic of the following programs and C codes required…. . . .
OR

