#include #include int main (){ char str[] = "I am Superman"; memmove (str + 20, str + 15,11); puts (str); return 0;}