| 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 |


http://itsys.hansung.ac.kr/cgi-bin/onlineTest/viewCcoding/onlineCcoding.cgi?source=src/chap10/strcpy.c
CÇÁ·Î±×·¡¹Ö(ÇÁ·Î±×·¡¹Ö¾ð¾î) ½Ç½À°Ô½ÃÆÇ