⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strcat.c

📁 标准c库代码,可以应用于各个系统提供了大量的基本函数
💻 C
字号:
/*FUNCTION	<<strcat>>---concatenate stringsINDEX	strcatANSI_SYNOPSIS	#include <string.h>	char *strcat(char *<[dst]>, const char *<[src]>);TRAD_SYNOPSIS	#include <string.h>	char *strcat(<[dst]>, <[src]>)	char *<[dst]>;	char *<[src]>;DESCRIPTION	<<strcat>> appends a copy of the string pointed to by <[src]>	(including the terminating null character) to the end of the	string pointed to by <[dst]>.  The initial character of	<[src]> overwrites the null character at the end of <[dst]>.RETURNS	This function returns the initial value of <[dst]>PORTABILITY<<strcat>> is ANSI C.<<strcat>> requires no supporting OS subroutines.QUICKREF	strcat ansi pure*/#include <string.h>/*SUPPRESS 560*//*SUPPRESS 530*/char *_DEFUN (strcat, (s1, s2),	char *s1 _AND	_CONST char *s2){  char *s = s1;  while (*s1)    s1++;  while (*s1++ = *s2++)    ;  return s;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -