background image

C

 – 

语言字符串函数例子程序大全 string 相关

 – 

关于字符串函数的应用细则,例子程序 jerny

函数名: stpcpy 

  

功 能: 

 

拷贝一个字符串到另一个

  

用 法: char *stpcpy(char *destin, char *source); 
程序例: 

#include <stdio.h> 
#include <string.h> 

int main(void) 

   char string[10]; 
   char *str1 = "abcdefghi"; 

   stpcpy(string, str1); 
   printf("%s\n", string); 
   return 0; 

  
  
  

函数名: strcat 

  

功 能: 

 

字符串拼接函数

  

用 法: char *strcat(char *destin, char *source); 
程序例: 

#include <string.h> 
#include <stdio.h> 

int main(void) 

   char destination[25]; 
   char *blank = " ", *c = "C++", *Borland = "Borland"; 

   strcpy(destination, Borland); 
   strcat(destination, blank); 
   strcat(destination, c); 

   printf("%s\n", destination); 
   return 0;