#include #include #define SIZE 256 void letter_change_copy( char *to, char *from ) { } int main(void) { char a[SIZE], b[SIZE]; printf("文字列を 1 つ入力してください:"); scanf("%s", a); letter_change_copy(b, a); printf("コピー元の文字列:<%s>\n", a); printf("コピー先の文字列:<%s>\n", b); return 0; }