Hello! I'm trying to make a function that uses a counter and checks each word (characters in between two spaces) if it is similar to the other string. if they aren't the same, the counter goes up by one.
For example, comparing...
String 1: AH0 L AY1 N D
String 2: AH0 N L AY1 N D
should give me a count of 1, because only one thing changed.
Of course, if we're just looking for a binary "the strings are the same/the strings are different" then that's easy. if (string2 != string1) count = 1;