void strcpy(char* a, char* b){

    while(*b++ = *a++);

}


ㅇㅇ