模拟实现C语言strcpy

模拟实现C语言strcpy


#include 
char * _strcpy(char* destination, const char* source) {
	// 断言 为假报错
	assert(destination && source);
	// 记录目的地的地址
	char* temp = destination;

	while (*destination++ = *source++);

	return temp;

}

你可能感兴趣的:(c语言,学习,开发语言)