my/c/l8.c

12 lines
222 B
C
Raw Normal View History

2026-05-08 17:14:36 +03:00
#include <stdio.h>
#include <string.h>
int main() {
char x[100] = "hello";
x[0] = 'H';
2026-05-08 19:30:29 +03:00
x[1] = 'i';
strcpy(&x[2], &x[5]);
strcat(x, "!");
2026-05-08 17:14:36 +03:00
int len = strlen(x);
2026-05-08 19:30:29 +03:00
printf("Symbol: %d\n%s", len, x);
2026-05-08 17:14:36 +03:00
}