摘要:
定义变量 int a = 1; int b = 2; 常量指针: 顾名思义,指向常量的指针(a pointer to const int,底层const),不能通过该指针修改变量的值(不通过该指针仍然可以修改) const int * p1 = &a; // *p1为const,即指针指向的值为co 阅读全文
摘要:
root@host: /home/wkxnk/project$ git rebase master First, rewinding head to replay your work on top of it...Fast-forwarded transform to master. 将master 阅读全文
摘要:
C语言 64位int 定义方式: Linux: long long Windows:__int64 C语言 64位int 输出方式: Linux: "%lld" Windows:"%I64d" C++ 64位int 定义方式: Linux: long long Windows:__int64 C++ 阅读全文