1 2 3 4 5 6 7 8 9 10 11 12 13 | #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> int main(void) { char src[] = "Hello"; char dst[6]; strcpy(dst, src); printf("º¹»çµÈ ¹®ÀÚ¿ = %s \n", dst); return 0; } | cs |