00:01
This little c segment is trying to stop the program that the word is stop, but it mixes up character strings and functions.
00:09
So what's wrong? first, i -supper str is used incorrectly.
00:24
I -supper checks one character at a time.
00:27
It expects something like i -supper -s -t -r, zero in brackets, not the whole string.
00:34
So the correct idea would be with a zero in brackets.
00:45
Comparing isuppert to stop makes no sense.
00:49
This returns an integer, not a string.
00:52
Stop is a string literal.
00:54
So this comparison is invalid logic...