Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5276
  • 博文数量: 2
  • 博客积分: 65
  • 博客等级: 民兵
  • 技术积分: 30
  • 用 户 组: 普通用户
  • 注册时间: 2011-09-29 17:07
文章分类
文章存档

2013年(2)

我的朋友
最近访客

发布时间:2013-03-26 10:41:29

int *daytab[13];    // 1)an array of 13 pointers to integersint (*daytab)[13];    // 2)a pointer to an array of 13 integersI express the two types of declaration according operator priority:int a[10];    //every member of array a is an int, it has 10.........【阅读全文】

阅读(164) | 评论(0) | 转发(0)

发布时间:2013-01-24 11:00:31

The exercise from The Design of The UNIX Operating System, by Maurice J. Bach : The C language convention counts array indices from 0. Why do inode numbers start from 1 and not 0?Various answers to this question can be found by searching on Google. The most sensible answer is that the inode .........【阅读全文】

阅读(210) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册