搜索资源列表
20040913190255_vczx_clsrwini
- 读写ini的C++类 一、本类只有4个函数,分别为写数字,读数字,写文本,读文本。支持相对路径。可以用于有或无mfc支持的程序。visual c++6编译通过。 ini格式: [appname] keyname=s 二、代码:请下载压缩包。 三、如需要绝对路径删除CHAR FilePath[255] ---strcat(FilePath,fn)-literacy ini a category C, the only four categories of functions, namely dig
eg4
- strcat,C语言字符串连接程序
ListingFiles
- This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
strcat
- 设计函数STRCAT,模拟标准函数strcat
SecureCRT
- SecureCRT Sample: Converting Deprecated CRT Functions to their _s Counterparts This sample demonstrates how to convert CRT functions which have been deprecated for security reasons to their _s counterparts. It covers the conversion of the follow
cstringcode
- strchr strcmp strcat 源码
string
- 实现字符串的strcat, strsub, strequ操作 Input 第一行有一个字符串,为被操作字符串的初值(可能为空串),接下来有一个整数q,表示操作的个数,接下来q行每行为下列情况的一种:1. strcat ssss 表示把字符串ssss连接到被操作的字符串之后 2. strsub b e 表示求被操作字符串的子串(Sb...Sb+e-1) 3. strequ ssss 判断被操作字符串与ssss是否相等(每次strcat操作之后,被操作的字符串被永久的改变。)被操作字符串最长长
Unix
- 两个字符串连接程序 进程管理的四个设计 概要 -两个字符串连接程序 #include "stdio.h" main() {char a[]="acegikm" char b[]="bdfhjlnpq" char c[80],*p int i=0,j=0,k=0 while(a[i]!= \0 &&b[j]!= \0 ) {if (a[i] { c[k]=a[i] i++ } else c[k]=b[j++] k++ } c
strcat-strcpy-strcmp-strlen(hanshuyuanxing)
- strcat,strcpy,strcmp,strlen函数原型,本人在VC6.0下调试通过的例子。-strcat, strcpy, strcmp, strlen function prototype, I have to debug through the VC6.0 example.
IntroductiontoBufferOverflow
- 缓冲区溢出通常是向数组中写数据时,写入的数据的长度超出了数组原始定义的大小。 比如前面你定义了int buff[10],那么只有buff[0] - buff[9]的空间是我们定义buff 时 申请的合法空间,但后来往里面写入数据时出现了buff[12]=0x10 则越界了。C 语言常用的 strcpy、sprintf、strcat 等函数都非常容易导致缓冲区溢出问题-look at this!
string_connect_c
- 字符串连接算法,非strcat-not strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!
project
- 用matlab编写的HUFFMAN树的程序,按照要求输入输入,概率以及信号编号,就可以得到各个信号的Huffman编码。并且有课题报告附上。(编码是逆序输出的,若要改为正序,修改strcat内的两个参数顺序就好)-HUFFMAN prepared using matlab tree program, enter the requested input, probability, and signal numbers, each signal can be Huffman coding.
string
- 该文件有strlen,strcpy,strcmp,strcat函数,代码风格规范,非常有利于初学者。-The document has strlen, strcpy, strcmp, strcat function, code style standards is very conducive to beginners.
StrCat
- 连接字符串,将两个字符串合并成为一个字符串-Connection string, and the two merged into a string string
02
- 编写一个程序,将两个字符串连接起来(不用STRCAT函数)利用指针实现-Write a program that will link the two strings (not STRCAT function) the use of pointers
prog1
- 请编写函数fun,,函数的功能是:将放在字符串数组中的M个字符串(每串的长度不超过N),按顺序合并组成一个新的字符串。函数fun中给出的语句仅供参考。 例如,字符串数组中的M个字符串为 AAAA BBBBBBB CC 则合并后的字符串的内容应是:AAAABBBBBBCC。 提示:strcat(a,b)的功能是将字符b复制到字符串a的串尾上,成为一个新串。 注意:部分源文件存在文件PROG1.C中。数据文件IN.DAT中的数据不得修改。 请勿改动主函数main和其它
38
- 请编写函数fun,函数的功能是:将放在字符串数组中的M各字符串(每串的长度不超过N),按顺序合并组成一个新的字符串。函数fun中给出的语句仅供参考。 例如,字符串数组中的M个字符串为 AAAA BBBBBBB CC 则合并后的字符串的内容应是:AAAABBBBBBBCC。 提示:strcat(a,b)的功能是将字符串b复制到字符串a的串尾上,成为一个新串。 注意:部分源程序在文件APROG1.C中。 请勿改动主函数main和其它函数中的任何内容,仅在函数fun的花
strcat(linux)
- 在Linux环境下实现字符串连接,即strcat函数。-Realize strcat function in the Linux environment.
strcat
- 实现string.h中Strcat的功能,使用Visual C++6.0编译-To string.h Strcat the compiled using Visual C++6.0
Concat_strings-without-using-strcat-function
- Concat_strings without using strcat function