Welcome![Sign In][Sign Up]
Location:
Search - strcpy

Search list

[CSharpmemset

Description: memset,memcpy和strcpy-memset, memcpy and htpasswd
Platform: | Size: 1116 | Author: zxk | Hits:

[Linux-Unixreadinifile_H

Description: /* * 读取INI文件的函数(C语言) * File: readinifile.h * Read INI File * char* GetInitKey(FileName, Section, Key) * Return Key=>Value * + [config] * + dbhost=localhost * * strcpy(dbhost,GetInitKey(\"config.ini\", \"config\", \"dbhost\")) */-/ * read INI file functions (C) * File : readinifile.h * Read INI File * char * GetInitKe y ('">, Section, Key) * Return Key =
Platform: | Size: 972 | Author: eFun | Hits:

[Windows DevelopListingFiles

Description: This Program to listing all files and folder in one directory. FindNextFile, FindFirstFile, GetLastError, strcpy, strcat, printf
Platform: | Size: 29859 | Author: Merc | Hits:

[ActiveX/DCOM/ATLSecureCRT

Description: 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.
Platform: | Size: 11250 | Author: 徐海峰 | Hits:

[Windows Developbugscam

Description: BugScam is a collection of scripts for the commercial debugger IDA Pro (http://www.datarescue.com) that will scan a given binary for problematic uses of certain library functions (e.g. strcpy etc) and generate a nice output file (HTML so far, LaTeX soon). It s release was inspired by the fact that I had libaudit.idc (the \"core\" engine) lying on my harddisk since early 2001, and never thought someone would bother with something this simple -- but now in 2003 one can find commercial products with almost identical functionality on the Web, and as such I decided to release this as OpenSource.
Platform: | Size: 19804 | Author: pp | Hits:

[Multimedia programchongzauhanshu

Description: 定义Name类的重载赋值函数。#include<iostream.h> #include<string.h> class Name { public : Name ( char *pN ) Name( Name & ) Name& operator=( Name& ) ~ Name() protected : char *pName int size } Name::Name ( char *pN ) { cout <<\" Constructing \" << pN << endl pName = new char[ strlen( pN ) + 1 ] if( pName != 0 ) strcpy( pName,pN ) size = strlen( pN ) }
Platform: | Size: 928 | Author: 伍国 | Hits:

[Other resourceC++

Description: 本文关键词: c++ 字符串 函数 char *strcpy(char *s1, const char *s2) 将字符串s2复制到字符串数组s1中,返回s1的值 char *strncpy(char *s1, const char *s2, size_t n) 将字符串s2中最多n个字符复制到字符串数组s1中,返回s1的值
Platform: | Size: 2135 | Author: 甄子丹 | Hits:

[JSPC++

Description: 本文关键词: c++ 字符串 函数 char *strcpy(char *s1, const char *s2) 将字符串s2复制到字符串数组s1中,返回s1的值 char *strncpy(char *s1, const char *s2, size_t n) 将字符串s2中最多n个字符复制到字符串数组s1中,返回s1的值-This article Keywords: c++ String function char* strcpy (char* s1, const char* s2) will copy the string s2 to string s1 in the array, the value of s1 return char* strncpy (char* s1, const char* s2, size_t n) string s2 to be the most n characters are copied to the array string s1, the return value of s1
Platform: | Size: 2048 | Author: 甄子丹 | Hits:

[Windows Developstrcat-strcpy-strcmp-strlen(hanshuyuanxing)

Description: strcat,strcpy,strcmp,strlen函数原型,本人在VC6.0下调试通过的例子。-strcat, strcpy, strcmp, strlen function prototype, I have to debug through the VC6.0 example.
Platform: | Size: 36864 | Author: 刘飞飞 | Hits:

[Linux-Unixstrcpy

Description: 这是一个有linux和windows以及我自己的strcpy程序.- This is a linux and windows and my own strcpy program.
Platform: | Size: 134144 | Author: 王明明 | Hits:

[File Operate=strcpy

Description: 关于字符串赋值=和strcpy问题 -On the issue of a string assignment = and strcpy
Platform: | Size: 11264 | Author: tian | Hits:

[File Operatestrcpy

Description: 设计一函数StringCopy实现字符串str1拷贝到str2中,(即实现strcpy功能)要求用指针实现,不能用计数器。-Design a function StringCopy realize str1 string copied to the str2, (i.e. realize strcpy function) require a pointer realize, cannot use the counter
Platform: | Size: 1024 | Author: 张瑞明 | Hits:

[OS programstrcpy

Description: 实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考 -Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
Platform: | Size: 8192 | Author: 刘斌 | Hits:

[Otherwordchose

Description: 进行自负的匹配,- #include<iostream.h> #include <string> using namespace std class String { private: int size char *chr public: String(char* temp) { size=strlen(temp) chr =new char[size+1] strcpy(chr,temp) } String(){} int Get_Size() { return size } char* Get_Chr() { return chr } String& insert1 ( int pos1, String& str ) String& insert2 ( int pos1, const char* s, int n ) String& erase ( int pos=0, int n =0 ) String& replace1 ( int pos1, int n1, String& str ) String& replace2 ( int pos1, int n1, const char* s, int n2 ) void swap ( String& str ) String& operator+= ( String& str ) String& operator+= ( const char* s ) int find1 ( String& str, int pos = 0 ) const int find2 ( const char* s, int pos=0, int n=0 ) const ~String() { de
Platform: | Size: 2048 | Author: 刘欢 | Hits:

[CSharpstrcpy

Description: strcpy函数应用,刚注册第一次上传,试试功能怎样-the strcpy function application, just registered the first upload, try the function how
Platform: | Size: 37253120 | Author: 王大 | Hits:

[File Operatestrcpy

Description: 自定义字符串拷贝函数strcpy(),在C-Free和VC环境能够通过-Custom string copy function strcpy () in C-Free and VC environment through
Platform: | Size: 84992 | Author: wang ying | Hits:

[OtherStrCpy

Description: 使用指针实现库函数StrCpy以处理字符串复制功能,并返回指针!-Using pointers to handle string library functions StrCpy copy function, and returns the pointer!
Platform: | Size: 1024 | Author: hahha | Hits:

[Embeded-SCM DevelopSTRCPY

Description: STRCPY的实现与应用 希望对大家由帮助-STRCPY THE SHIXIAN
Platform: | Size: 735232 | Author: songzhenhua | Hits:

[ADO-ODBCstrcpy

Description: 实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考-Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
Platform: | Size: 9216 | Author: hhgzg887che | Hits:

[ADO-ODBCstrcpy

Description: 实现和测试C标准库中的strcpy函数,支持各种操作系统。供大家参考-Implementation and test strcpy function in the C standard library ~ for your reference, the level of limited ~ ~
Platform: | Size: 8192 | Author: bz7309zhong | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net