C
yxzzy_young
华中科技大学软件学院学士-->北京大学软件与微电子学院在读硕士-->?
目前正在研究Information Retrieval&Data Mining&Machine Learning。
展开
-
C中的宏(by faithyacht)
#define DUMP_WRITE(addr, nr) do{ memcpy(bufp, addr , nr) ; bufp+= nr ;}while(0) 你会说根本不需要do...while..., it is nonsense!接下来,我们看一个例子,就知道do while是很sensable转载 2006-11-22 19:52:00 · 710 阅读 · 0 评论 -
Differences in different C implementations
I finished reading the book this evening, in the lab. I have to admit that this book is really an excellent reference about some very confusing problems and corner cases in C programming. How I wish原创 2007-03-31 23:44:00 · 611 阅读 · 3 评论 -
Arrays and Pointers
There are a large amount of C programmers who will consider arrays and pointers as the same thing, or at least they have the same usage, especially those beginners. But actually that is not correct! I原创 2007-04-04 10:09:00 · 579 阅读 · 0 评论