......
全部博文(52)
发布时间:2013-07-01 22:34:32
任何事物都是由比它更小的单位组成的,从物理学的角度来说就是什么原子(不知道现在对不对,学物理的尽管拍砖,哈哈), 一个汽车由4个轮子,发动机,底盘,车身,电气设备等组成,作为一个程序员应该知道一个程序有哪些部分组成的,不然......1. text段, 就是代码段了,直观上看就是你码上去的东西,吧嗒吧嗒..... 因为你.........【阅读全文】
发布时间:2013-06-30 17:13:10
1. prototype int fflush(FILE *stream); This function causes any buffered output onstream to be delivered to the file. This function returns EOF if a write error occurs, or zero otherwise.2. example void main(vo.........【阅读全文】