mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-20 14:26:11 +00:00
31 lines
474 B
Plaintext
31 lines
474 B
Plaintext
comparing: lower123 with lowerabc sentinel = 0
|
|
str1 = 123
|
|
str2 = abc
|
|
cc = 1
|
|
|
|
comparing: higher234 with higher123 sentinel = 0
|
|
str1 = 234
|
|
str2 = 123
|
|
cc = 2
|
|
|
|
comparing: equal with equal sentinel = 0
|
|
str1 = equal
|
|
str2 = equal
|
|
cc = 0
|
|
|
|
comparing: equal with equallong sentinel = 0
|
|
str1 =
|
|
str2 = long
|
|
cc = 1
|
|
|
|
comparing: equallong with equal sentinel = 0
|
|
str1 = long
|
|
str2 =
|
|
cc = 2
|
|
|
|
comparing: lower1 with lower2 sentinel = 119 (w)
|
|
str1 = lower1
|
|
str2 = lower2
|
|
cc = 0
|
|
|