CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - strcat
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - strcat - List
[
File Operate
]
20040913190255_vczx_clsrwini
DL : 0
读写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 digital writing, word reading, writing text, reading text. Support relative path. Can be used with or without mfc support procedures. Visual C + +6 compile. Ini format : [appname] keyname = s 2, code : Please download compressed. Three, if required absolute path to delete CHAR FilePath [255] --- Geodetic (FilePath, fn)
Date
: 2008-10-13
Size
: 1.19kb
User
:
王迎芳
[
Other
]
eg4
DL : 0
strcat,C语言字符串连接程序
Date
: 2008-10-13
Size
: 2.05kb
User
:
chea
[
Windows Develop
]
ListingFiles
DL : 0
This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
Date
: 2008-10-13
Size
: 29.16kb
User
:
Merc
[
Other resource
]
strcat
DL : 0
设计函数STRCAT,模拟标准函数strcat
Date
: 2008-10-13
Size
: 6.06kb
User
:
yasha
[
ActiveX/DCOM/ATL
]
SecureCRT
DL : 0
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 following functions: strcpy, strncpy, fopen, _splitpath, sprintf, getenv, strcat, _creat, and itoa. It also demonstrates the use of _set_invalid_parameter_handler, another Secure CRT addition.
Date
: 2008-10-13
Size
: 10.99kb
User
:
徐海峰
[
Windows Develop
]
cstringcode
DL : 0
strchr strcmp strcat 源码
Date
: 2008-10-13
Size
: 1.4kb
User
:
tianya
[
File Operate
]
20040913190255_vczx_clsrwini
DL : 0
读写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 digital writing, word reading, writing text, reading text. Support relative path. Can be used with or without mfc support procedures. Visual C++6 compile. Ini format : [appname] keyname = s 2, code : Please download compressed. Three, if required absolute path to delete CHAR FilePath [255]--- Geodetic (FilePath, fn)
Date
: 2025-07-11
Size
: 1kb
User
:
王迎芳
[
Other
]
eg4
DL : 0
strcat,C语言字符串连接程序 -strcat, C language string linker
Date
: 2025-07-11
Size
: 2kb
User
:
chea
[
Windows Develop
]
ListingFiles
DL : 0
This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf-This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
Date
: 2025-07-11
Size
: 29kb
User
:
Merc
[
.net
]
strcat
DL : 0
设计函数STRCAT,模拟标准函数strcat-Design function STRCAT, analog standard function strcat
Date
: 2025-07-11
Size
: 6kb
User
:
yasha
[
ActiveX/DCOM/ATL
]
SecureCRT
DL : 0
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 following functions: strcpy, strncpy, fopen, _splitpath, sprintf, getenv, strcat, _creat, and itoa. It also demonstrates the use of _set_invalid_parameter_handler, another Secure CRT addition. -SecureCRT Sample: Converting Deprecated CRT Functions to their _s CounterpartsThis sample demonstrates how to convert CRT functions which have been deprecated for security reasons to their _s counterparts. It covers the conversion of the following functions: strcpy, strncpy, fopen, _splitpath, sprintf, getenv , strcat, _creat, and itoa. It also demonstrates the use of _set_invalid_parameter_handler, another Secure CRT addition.
Date
: 2025-07-11
Size
: 11kb
User
:
徐海峰
[
Linux-Unix
]
Unix
DL : 0
两个字符串连接程序 进程管理的四个设计 概要 -两个字符串连接程序 #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[k]= \0 if(a[i]== \0 ) p=b+j else p=a+i strcat(c,p) puts© }
Date
: 2025-07-11
Size
: 24kb
User
:
asdasdasd123
[
Windows Develop
]
strcat-strcpy-strcmp-strlen(hanshuyuanxing)
DL : 0
strcat,strcpy,strcmp,strlen函数原型,本人在VC6.0下调试通过的例子。-strcat, strcpy, strcmp, strlen function prototype, I have to debug through the VC6.0 example.
Date
: 2025-07-11
Size
: 36kb
User
:
刘飞飞
[
CSharp
]
IntroductiontoBufferOverflow
DL : 0
缓冲区溢出通常是向数组中写数据时,写入的数据的长度超出了数组原始定义的大小。 比如前面你定义了int buff[10],那么只有buff[0] - buff[9]的空间是我们定义buff 时 申请的合法空间,但后来往里面写入数据时出现了buff[12]=0x10 则越界了。C 语言常用的 strcpy、sprintf、strcat 等函数都非常容易导致缓冲区溢出问题-look at this!
Date
: 2025-07-11
Size
: 239kb
User
:
lunix
[
Mathimatics-Numerical algorithms
]
string_connect_c
DL : 0
字符串连接算法,非strcat-not strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!strcat!!!!!!!!!!!!!!!!!!!!!!!!!
Date
: 2025-07-11
Size
: 155kb
User
:
susan
[
VC/MFC
]
stringLearing
DL : 0
字符串相关函数的学习,strcpy(),strcat(),对学习很有帮助-String correlation function of learning, strcpy (), strcat (), helpful in learning
Date
: 2025-07-11
Size
: 9kb
User
:
高锋
[
Compress-Decompress algrithms
]
project
DL : 0
用matlab编写的HUFFMAN树的程序,按照要求输入输入,概率以及信号编号,就可以得到各个信号的Huffman编码。并且有课题报告附上。(编码是逆序输出的,若要改为正序,修改strcat内的两个参数顺序就好)-HUFFMAN prepared using matlab tree program, enter the requested input, probability, and signal numbers, each signal can be Huffman coding.
Date
: 2025-07-11
Size
: 48kb
User
:
陈鹏
[
Linux-Unix
]
strcat(linux)
DL : 0
在Linux环境下实现字符串连接,即strcat函数。-Realize strcat function in the Linux environment.
Date
: 2025-07-11
Size
: 2kb
User
:
ChristinaZhang
[
Other
]
strcat
DL : 0
实现string.h中Strcat的功能,使用Visual C++6.0编译-To string.h Strcat the compiled using Visual C++6.0
Date
: 2025-07-11
Size
: 195kb
User
:
zhou
[
Console
]
Concat_strings-without-using-strcat-function
DL : 0
Concat_strings without using strcat function
Date
: 2025-07-11
Size
: 1kb
User
:
Pralay Saha
«
1
2
3
4
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.