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

📄 tst_strncat.c

📁 KEILC51程序实例和配套硬件目标板,很详细,程序有注释
💻 C
字号:
#include <string.h>
#include <stdio.h>                  /* for printf */
void tst_strncat (void) {
   char buf [21];
   strcpy (buf, "test #");
   strncat (buf, "three", sizeof (buf) - strlen(buf));
}

⌨️ 快捷键说明

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