cpp
ndzj981479673
研究生
展开
-
cpp复习
腾讯的不定项选择真的很忧伤,我都没法确定笔试能不能过了。原创 2014-09-18 12:27:19 · 737 阅读 · 1 评论 -
cpp复习2-类型转换
1 类型转换编译时刻确定的有static_cast,conststatic_cast,原创 2014-09-22 09:41:33 · 775 阅读 · 0 评论 -
指针与字符串操作-一道腾讯笔试题
#include void f(char **p){ *p +=2;}int main(int argc, const char * argv[]){ // insert code here... std::cout <<"Hello, World!\n"; char *a[]={"123","abc","4原创 2014-09-12 11:00:05 · 1027 阅读 · 6 评论 -
cpp复习3-字符串操作
1 char * strcpy(char * strDest, const char *strSrc){assert(strDest && strStr)}原创 2014-09-22 10:31:14 · 792 阅读 · 0 评论 -
sizeof(struct)---一道腾讯笔试题
struct xx{ long long _x1; char _x2; int _x3; char _x4[2]; static int _x5; };int xx::_x5;sizeof(xx) = 24原创 2014-09-27 11:17:38 · 1332 阅读 · 0 评论