char source[] = "Hello world !"; char destination[20] = {0}; strcpy_s(destination,sizeof(destination)/sizeof(destination[0]),source);
strcpy_s 和 strcat_s的用法
原文:https://www.cnblogs.com/NULL-ROOT/p/10535818.html