の定義がis
strcpy()
であるにもかかわらず、char 配列ポインターを受け入れるのはなぜですか?strcpy
char * strcpy( char * , const char * )
#include <stdio.h>
#include <string.h>
main()
{
char str[] = "Have A Nice Day";
char ptr[17];
strcpy(ptr, str);
printf("%s", ptr);
}