commit 3
This commit is contained in:
parent
747fc905b5
commit
5430e1fdd5
@ -1 +1,23 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int strlen(char s[]) {
|
||||
int len = 0; // счетчик
|
||||
|
||||
// Перебираем символы строки
|
||||
while (s[len] != '\0') {
|
||||
len++;
|
||||
}
|
||||
|
||||
return len; // Возвращаем длину
|
||||
}
|
||||
|
||||
int main() {
|
||||
char str1[] = "Hello, world!";
|
||||
char str2[] = "C programming";
|
||||
|
||||
printf("Длина строки \"%s\" = %d\n", str1, strlen(str1));
|
||||
printf("Длина строки \"%s\" = %d\n", str2, strlen(str2));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user