diff --git a/22/ConsoleApplication1/ConsoleApplication1.c b/22/ConsoleApplication1/ConsoleApplication1.c index f4b8e04..4095eda 100644 --- a/22/ConsoleApplication1/ConsoleApplication1.c +++ b/22/ConsoleApplication1/ConsoleApplication1.c @@ -41,7 +41,7 @@ int strchr(char s1[], char sym) { int i = 0; while (s1[i] != sym) { i++; - if (i >= strlen_1st(s1)) { printf("there's is such symbol"); break; } + if (i >= strlen_1st(s1)) { printf("there's no such symbol"); break; } } return i; }