#include <stdio.h>#include <string.h>void str_cpy(char * to, char *from){ while ((*to++ = *from++) != ''); return;}int main(){ char a[128]; str_cpy(a,"hello"); printf("a:%s ",a); return 0;}