C语言学习NO.13-字符函数(三)-strncpy,strncat,strncmp长度受限制的字符串函数
长度受限制的字符串函数介绍一、strncpy函数的使用(一)strncpy使用#include#includeintmain(){chararr1[20]="asdfgdfv";chararr2[7]="zxcvbn";strncpy(arr1,arr2,4);printf("str0=%s\n",arr1);char*str1=strncpy(arr1,arr2,4);printf("str1=