c语言常见面试题,c/c++常见面试题

memcpy与strcpy实现 转自:http://www.cppblog.com/aurain/archive/2008/04/22/47796.html void* memcpy(void* pvTo, const void* pvForm, size_t size) { assert((pvTo!= NULL) && (pvFrom!= NULL));//使用断言防止传递空地址 uns... [阅读全文]

c语言面试题:C/C++面试题八

C/C++面试题八 1. 以下三条输出语句分别输出什么?[C易] char str1[] = "abc"; char str2[] = "abc"; const char str3[] = "abc"; const char str4[] = "abc"; const char* str5 = "abc"; const char* str6 = "abc"... [阅读全文]
1 共1条 分1页