Chinaunix首页 | 论坛 | 博客
  • 博客访问: 121132
  • 博文数量: 22
  • 博客积分: 145
  • 博客等级: 入伍新兵
  • 技术积分: 127
  • 用 户 组: 普通用户
  • 注册时间: 2012-12-06 15:19
文章分类

全部博文(22)

文章存档

2015年(5)

2014年(2)

2013年(7)

2012年(9)

我的朋友

分类: C/C++

2012-12-18 17:56:01

 
 
/*
 * Frequently Occurred Mistakes when code in C
 */
/* May 8, 2008 */
Right shift unsigned int, vacated bits will be filled with zero. Unlike signed int, which is filled with sign bits.

/* May 7, 2008 */
struct student {                   /* ATTN: ';' is often omitted */
        char *name;
        int num;
}
#define OUT 0;                     /* ATTN: no ';' needed here */
for (int i=0; i        ;
getline(char *, lim) and getlongestline(char *, int lim)  /* always remember the principle of divide and conquer */
阅读(950) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~