lwp225的ChinaUnix博客lwplinux.blog.chinaunix.net
lwp225
全部博文(47)
2019年(1)
2014年(1)
2013年(9)
2012年(36)
zk245576
zhe_wang
笔刀侠
Q_Tao
bocaihua
tyzzph86
谢朝钦
kudoshin
Bean_lee
烬阳公子
向念
一支白铅
cynthia
格伯纳
71410538
lilyjiah
passion_
disizu
发布时间:2013-03-25 22:31:35
这段代码是我今天在一本书上看到的,很全面,贴出来和大家共享一下, 我做了些小改动,具体如下:#include #include #include typedef struct{ short a1; &.........【阅读全文】
发布时间:2013-03-23 13:27:42
简单来说,函数指针就是指向函数的指针,本质是一个指针。指针函数只是说明他是一个返回值为指针的函数,他的本质是一个函数。 这么说比较容易理解,其实我们也可以对比数组指针和指针数组来区分这两个之间的差别。 函数指针的定义如下:int (*f) (int x); //括.........【阅读全文】
发布时间:2013-03-19 18:10:46
? 先说数组指针,指向一个数组的指针就是数组指针。定义数组指针的代码如下: ?int (*ap) [2];//该代码定义了一个指向包含有两个元素的数组的数组指针。 ?而如果一个数组的每一个元素都是指针,则这个数组是一个指针数组。定义指针数组的代码如下: ?char *chararr[]=={"aa","li","baidu"}//该代码.........【阅读全文】
紫奇缘2015-06-06 23:40
求大神帮助,在横线上填什么使得结果是12121212谢谢!!!#include <stdio.h>#include <string.h>#include <stdlib.h>typedef ___int main(){ int a; memset_f func; func=memset; a=0; (void)func(&a,0x12,sizeof(0)); printf("%x",a); return 0;}
紫奇缘2015-06-06 22:50
请问大神在横线上填什么使得结果为abc:123demo:123谢谢!!!#include <stdio.h>#include <stdlib.h>#include <string.h>#define preg(a) printf("%s:%s",__,a)int main(){ char abc[]={"123"}; char demo[]={"demo"}; preg(abc); preg(demo); printf("\n"); return 0;}
lwp2252013-02-26 18:35
谢谢了,你在那边咋样?
bse_han2013-02-25 14:14
不错 现在好牛B了 都是推荐博客了 好好弄 加油!
登录 注册