- 博客(2)
- 资源 (4)
- 收藏
- 关注
原创 C语言中二重指针和指针数组以及数组指针的测试
#include int main(int argc, char **argv) { int (*p)[3]; int a[3] = {11, 22, 33}; int k; p = &a; for(k=0; k { printf("*(*p + %d) = %d\n", k, *(*p + k)); } /* int j; char **p; c
2017-04-12 15:05:40
437
转载 Makefile 中:= ?= += =的区别
新建一个Makefile,内容为: ifdef DEFINE_VRE VRE = “Hello World!” else endif ifeq ($(OPT),define) VRE ?= “Hello World! First!” endif ifeq ($(OPT),add) VRE += “Kelly!” endif ifeq ($(
2016-11-09 16:01:06
181
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅