码迷,mamicode.com
首页 > 编程语言 > 详细

写给陌生的人,如何学好c语言

时间:2015-02-27 13:12:48      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

第一:C语言语法结构很简洁精妙,写出的程序也很高效,很便于描述算法,大多数的程序员愿意使用C语言去描述算法本身,所以,如果你想在程序设计方面有所建树,就必须去学它。
第二:C语言能够让你深入系统底层,你知道的操作系统,哪一个不是C语言写的?所有的windows,Unix,Linux,Mac,os/2,没有一个里外的,如果你不懂C语言,怎么可能深入到这些操作系统当中去呢?更不要说你去写它们的内核程序了。
第三:很多新型的语言都是衍生自C语言,C++,Java,C#,J#,perl...哪个不是呢?掌握了C语言,可以说你就掌握了很多门语言,经过简单的学习,你就可以用这些新型的语言去开发了,这个再一次验证了C语言是程序设计的重要基础。还有啊,多说一点:即使现在招聘程序员,考试都是考C语言,你想加入it行业,那么就一定要掌握好C语言。

那么究竟怎样学习C语言呢?

1:工欲善其事,必先利其器
这里介绍几个学习C语言必备的东东:
一个开发环境,例如turbo C 2.0,这个曾经占据了DOS时代开发程序的大半个江山。但是现在windows时代,用turbo C有感觉不方面,编辑程序起来很吃力,并且拖放,更没有函数变量自动感应功能,查询参考资料也不方便。建议使用Visual C++,这个东西虽然比较大块头,但是一旦安装好了,用起来很方便。
一本学习教程,现在C语言教材多如牛毛,但推荐大家使用《C语言程序设计》谭浩强主编 第二版 清华大学出版社,此书编写的很适合初学者,并且内容也很精到。
除此以外,现在有很多辅助学习的软件,毕竟现在是Window时代了,学习软件多如牛毛,不象我们当初学习,只有读书做题这么老套。我向大家推荐一个“集成学习环境(C语言)”,里边的知识点总结和例程讲解都非常好,还有题库测试环境,据说有好几千题,甚至还有一个windows下的trubo C,初学者甚至不用装其它的编译器,就可以练习编程了,非常适合初学者。还有一个“C语言学习系统”软件,不过感觉只是一个题库系统,如果你觉得题做的不够,不妨也可以试试。

2:葵花宝典
学习计算机语言最好的方法是什么?答曰:读程序。
没错,读程序是学习C语言入门最快,也是最好的方法。如同我,现在学习新的J#,C#等其他语言,不再是抱着书本逐行啃,而是学习它们的例程。当然,对于没有学过任何计算机语言的初学者,最好还是先阅读教程,学习完每一章,都要认真体会这一章的所有概念,然后不放过这一章中提到的所有例程,然后仔细研读程序,直到每一行都理解了,然后找几个编程题目,最好是和例程类似的或一样的,自己试图写出这段已经读懂的程序,不要以为例程你已经读懂了,你就可以写出和它一样的程序,绝对不一定,不相信你就试一试吧,如果写不出来,也不要着急,回过头来再继续研究例程,想想自己为什么写不出来,然后再去写这段程序,反反复复,直到你手到擒来为止,祝贺你,你快入门了。

3:登峰造极
写程序的最高境界其实就是掌握各种解决问题的手段(数据结构)和解决问题的方法(算法)。
是不是写出底层程序就是程序设计高手呢?非也,写底层程序,无非是掌握了硬件的结构,况且硬件和硬件还不一样,要给一个芯片写驱动程序,无非就是掌握这块芯片的各种寄存器及其组合,然后写值读值,仅此而已。这不过是熟悉一些io函数罢了。那么怎样才算精通程序设计呢?怎样才能精通程序设计呢?举个例子:你面前有10个人,找出一个叫“张三”的人,你该怎么办?第一种方法:直接对这10个人问:“谁叫张三”。第2种方法:你挨个去问“你是不是张三?”,直到问到的这个人就是张三。第三种方法:你去挨个问一个人“你认不认识张三,指给我看”。不要小看这个问题,你说当然会选第一种方法,没错恭喜你答对了,因为这个方法最快,效率最高,但是在程序设计中找到解决问题的最优方法和你用的手段却是考验一个程序员程序设计水平的重要标志,而且是不容易达到的。刚才这个问题类似于数据结构和算法中的:Map数据结构,穷举查找和折半查找。所以掌握好数据结构和一些常用算法,是登峰造极的必然之路。最后给大家推荐严尉敏的《数据结构》清华大学出版社,希望每一个想成为程序设计高手的人研读此书。
http://bbs.oray.com/thread-219458-1-1.html
http://bbs.oray.com/thread-219457-1-1.html
http://bbs.oray.com/thread-219455-1-1.html
http://bbs.oray.com/thread-219454-1-1.html
http://bbs.oray.com/thread-219453-1-1.html
http://bbs.oray.com/thread-219451-1-1.html
http://bbs.oray.com/thread-219449-1-1.html
http://bbs.oray.com/thread-219445-1-1.html
http://bbs.oray.com/thread-219442-1-1.html
http://bbs.oray.com/thread-219440-1-1.html
http://bbs.oray.com/thread-219478-1-1.html
http://bbs.oray.com/thread-219476-1-1.html
http://bbs.oray.com/thread-219475-1-1.html
http://bbs.oray.com/thread-219473-1-1.html
http://bbs.oray.com/thread-219471-1-1.html
http://bbs.oray.com/thread-219469-1-1.html
http://bbs.oray.com/thread-219466-1-1.html
http://bbs.oray.com/thread-219464-1-1.html
http://bbs.oray.com/thread-219484-1-1.html
http://bbs.oray.com/thread-219482-1-1.html
http://bbs.oray.com/thread-219481-1-1.html
http://bbs.oray.com/thread-219480-1-1.html
http://bbs.oray.com/thread-219502-1-1.html
http://bbs.oray.com/thread-219501-1-1.html
http://bbs.oray.com/thread-219500-1-1.html
http://bbs.oray.com/thread-219497-1-1.html
http://bbs.oray.com/thread-219495-1-1.html
http://bbs.oray.com/thread-219492-1-1.html
http://bbs.oray.com/thread-219491-1-1.html
http://bbs.oray.com/thread-219487-1-1.html
http://bbs.oray.com/thread-219486-1-1.html
http://bbs.oray.com/thread-219508-1-1.html
http://bbs.oray.com/thread-219507-1-1.html
http://bbs.oray.com/thread-219506-1-1.html
http://bbs.oray.com/thread-219505-1-1.html
http://bbs.oray.com/thread-219503-1-1.html
http://bbs.oray.com/thread-219447-1-1.html
http://bbs.oray.com/thread-219461-1-1.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrz6.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrz5.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrz4.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrz3.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrz2.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrz1.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryz.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryy.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryx.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryv.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryu.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrys.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryr.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryq.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryp.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryo.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryn.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrym.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryl.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryk.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryj.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryi.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryg.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryf.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrye.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vryd.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrya.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry9.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry8.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry7.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry6.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry5.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry3.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry2.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry1.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vry0.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxz.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxx.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxw.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxv.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxu.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxt.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxs.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxr.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxq.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxp.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxo.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxn.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxl.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxk.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxj.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxi.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxh.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxg.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxf.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxe.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxd.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxb.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrxa.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx9.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx8.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx7.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx6.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx5.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx4.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx3.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx2.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx1.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrx0.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwz.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwy.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwx.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrww.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwv.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwu.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwt.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrws.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwr.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwq.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwp.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwo.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwn.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwm.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwl.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwk.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwj.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwi.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwh.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwg.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwf.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwe.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwd.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwc.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrwa.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw9.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw8.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw7.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw6.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw5.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw3.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw2.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw1.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrw0.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvz.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvy.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvw.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvv.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvu.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvt.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvs.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvr.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvq.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvp.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvo.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvn.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvm.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvl.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvk.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvj.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvi.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvh.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvg.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvf.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrve.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvd.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvc.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrvb.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrva.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv9.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv8.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv7.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv6.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv5.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv4.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv3.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv2.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv1.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrv0.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruz.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruy.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrux.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruw.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruv.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruu.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrut.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrus.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrur.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruq.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrup.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruo.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrun.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrum.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vrul.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruk.html
http://blog.sina.com.cn/s/blog_12c6dc8620102vruj.html

写给陌生的人,如何学好c语言

标签:

原文地址:http://www.cnblogs.com/wuwangjinshen/p/4302933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!