l8.c 222 B

123456789101112
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main() {
  4. char x[100] = "hello";
  5. x[0] = 'H';
  6. x[1] = 'i';
  7. strcpy(&x[2], &x[5]);
  8. strcat(x, "!");
  9. int len = strlen(x);
  10. printf("Symbol: %d\n%s", len, x);
  11. }