String h C Tutorial

Item Value
Header filestring.h
Declarationvoid *memmove(void *to, const void *from, size_t count);
Functionmoves count characters from *from into *to.
Returnreturns *to.

#include 
  #include 
  #define SIZE 80
  int main(void)
  {
    char str[SIZE], *p;
    strcpy(str, "AAAAAAAAAAAAAAAAAAAAAAAAA");
    p = str + 10;
    memmove(str, p, SIZE);
    printf("result after shift: %s", str);
    return 0;
  }
result after shift: AAAAAAAAAAAAAAA