个性化阅读
专注于IT技术分析

c strcpy()函数

strcat(first_string,second_string)函数连接两个字符串,结果返回给first_string。

#include<stdio.h>
#include <string.h>  
int main(){  
  char ch[10]={'h', 'e', 'l', 'l', 'o', '\0'};  
   char ch2[10]={'c', '\0'};  
   strcat(ch, ch2);  
   printf("Value of first string is: %s", ch);  
 return 0;  
}

输出:

Value of first string is: helloc
赞(0)
未经允许不得转载:srcmini » c strcpy()函数

评论 抢沙发

评论前必须登录!