#include #include int main(int argc, char *argv[]){ char s[80],*sp="HELLO!"; sp=strcpy(s,sp); s[0]='h'; puts(sp);//hELLO! return 0;}