473,385 Members | 1,342 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

I am studying c myself .Which books I should read?

Well,I read <c primer plusbefore,and I just got a primary
conclusion about c.
Can somebody show me some books to read and something to do ?
I study c myself.btw,I am not a student,
Thanks.

Nov 26 '06 #1
10 1774
Solo.Wolve wrote:
Well,I read <c primer plusbefore,and I just got a primary
conclusion about c.
Can somebody show me some books to read and something to do ?
I study c myself.btw,I am not a student,
Thanks.
You probably need to try K&R: The C programming language 2nd edition.
That's a good book we use that too.

--
Leslie Kis-Adam or
Laszlo Kis-Adam or even
Kis-Ádám László

Student
Budapest University of Technology and Economics
Faculty of Electronic Engineering and Computer Science
<dfighter_AT_NOSPAM_freemail.hu>
Nov 26 '06 #2

"Solo.Wolve дµÀ£º
"
Well,I read <c primer plusbefore,and I just got a primary
conclusion about c.
Can somebody show me some books to read and something to do ?
I study c myself.btw,I am not a student,
Thanks.
Well, you are just in time. C is mature now also the compiler. K & R
(aka "The C Programming Language"), "C: A Reference Manual", and "C
Interface and Implememtations: Technology for Creating Reusable
Software" are my recommendations.
Good luck!

Mao..

Nov 26 '06 #3
Well,what else should I do beside reading the c programming language?
Would you think that reading some code may help much? If so,can you
show me some URL that afford such things?
And,what else can you recommend ?
Thank you very much.

Nov 28 '06 #4
"Solo.Wolve" wrote:
>
Well,what else should I do beside reading the c programming
language? Would you think that reading some code may help much?
If so,can you show me some URL that afford such things?
And,what else can you recommend ?
You should quote sufficient material from whatever you are
answering for your reply to make sense. You should follow commas
with a blank. And you can find lots of code to study by following
this newsgroup. For one, you can snoop about the download section
of my pages, URL below.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
Nov 28 '06 #5
Solo.Wolve said:
Well,what else should I do beside reading the c programming language?
Do the exercises, and post your answers here, asking for comments. Then pay
attention to the comments posted by experts (and ignore the chaff posted by
the clueless). To distinguish the clueless from the experts, read this
group for a while - which is in itself a worthy learning exercise.

Would you think that reading some code may help much?
Sure, but whether it's to learn How To Do It or How Not To Do It kind of
depends on who wrote the code.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Nov 28 '06 #6
Solo.Wolve wrote:
Well,what else should I do beside reading the c programming language?
Maybe _after_ finishing The C Programming Language.
Would you think that reading some code may help much? If so,can you
show me some URL that afford such things?
Yes reading _good_ code can expand your C thinking, but at the beginner
stage it's difficult to evaluate foreign code. Thus you might consider
some code snippet as nifty which might actually be bad C or programming
practise.

Thus, initially atleast, it's better to stick to known sources of
excellent C like TCPL and acquire basic C knowledge before browsing the
mountains of C code on the net.
And,what else can you recommend ?
I've found that lurking and/or participating in this group is an
excellent way to learn the best of C.

After you've finished TCPL I recommend Expert C Programming, C
Unleashed and C : A Reference Manual.

Any or all of the above may be out of active printing, but you can
still get good used copies.

Nov 28 '06 #7
Solo.Wolve wrote:
Well,what else should I do beside reading the c programming language?
Would you think that reading some code may help much? If so,can you
show me some URL that afford such things?
And,what else can you recommend ?
Thank you very much.

I'm generally of the opinion that for learners reading other people's
code isn't particularly helpful in learning to program. It does teach
to read code, which is a useful and allied skill, but not to write code
particularly.

For that, I recommend finding a reasonably-sized project and start to
work on it. Have a definite goal for the project, what the final state
will be, what the program can.

My own training tool was a text-adventure game, of the Zork type. This
had many advantages, the main one being that I was interested in the
subject. It also involved reading and parsing user input, text
manipulation, file I/O, and other useful aspects. Naturally, it's best
to find something that's interesting to you.

Brian
Nov 28 '06 #8
I agree that one can learn a lot when he/she work on a
reasonable project which he/she can manage.

But before one can start his/her own project, one should
pick up basic ability to write some simple to not so simple
programs.

Beginners needs exercise problems - simple programming tasks.
After finishing those exercise problems, beginners can move on
to a reasonable project.

The following URL gives some exercise problems which
beginners can work on.

http://www.geocities.com/mysimpc/problems.html
Default User wrote:
Solo.Wolve wrote:
Well,what else should I do beside reading the c programming language?
Would you think that reading some code may help much? If so,can you
show me some URL that afford such things?
And,what else can you recommend ?
Thank you very much.


I'm generally of the opinion that for learners reading other people's
code isn't particularly helpful in learning to program. It does teach
to read code, which is a useful and allied skill, but not to write code
particularly.

For that, I recommend finding a reasonably-sized project and start to
work on it. Have a definite goal for the project, what the final state
will be, what the program can.

My own training tool was a text-adventure game, of the Zork type. This
had many advantages, the main one being that I was interested in the
subject. It also involved reading and parsing user input, text
manipulation, file I/O, and other useful aspects. Naturally, it's best
to find something that's interesting to you.

Brian
Dec 15 '06 #9
he******@hanmail.net said:

<snip>
>
The following URL gives some exercise problems which
beginners can work on.

http://www.geocities.com/mysimpc/problems.html
The problems look fair enough, but the solutions are appalling.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Dec 15 '06 #10
he******@hanmail.net wrote:

Please don't top-post. Your replies belong following or interspersed
with properly trimmed quotes. See the majority of other posts in the
newsgroup, or:
<http://www.caliburn.nl/topposting.html>

I've rearranged the text.
Default User wrote:
Solo.Wolve wrote:
Well,what else should I do beside reading the c programming
language? Would you think that reading some code may help much?
If so,can you show me some URL that afford such things?
And,what else can you recommend ?
Thank you very much.

I'm generally of the opinion that for learners reading other
people's code isn't particularly helpful in learning to program. It
does teach to read code, which is a useful and allied skill, but
not to write code particularly.

For that, I recommend finding a reasonably-sized project and start
to work on it. Have a definite goal for the project, what the final
state will be, what the program can.

My own training tool was a text-adventure game, of the Zork type.
This had many advantages, the main one being that I was interested
in the subject. It also involved reading and parsing user input,
text manipulation, file I/O, and other useful aspects. Naturally,
it's best to find something that's interesting to you.
Argh. Quite a lot of typos, thinkos, word ommissions, etc. I really
need to look into that proof-reading business one of these days.
I agree that one can learn a lot when he/she work on a
reasonable project which he/she can manage.

But before one can start his/her own project, one should
pick up basic ability to write some simple to not so simple
programs.

Beginners needs exercise problems - simple programming tasks.
After finishing those exercise problems, beginners can move on
to a reasonable project.
I would assume that we're talking about someone who has worked through
a book doing the basic problem in it, and is now ready for the next
step. Reading code certainly wouldn't be right for someone who's still
less skilled than that.

I'd say buy K&R2, work through and do their exercises, and you'd be
ready to start doing real programs.
The following URL gives some exercise problems which
beginners can work on.

http://www.geocities.com/mysimpc/problems.html
As is the case with most such links, the resources vary from pretty to
pretty bad. The Steve Summit one is probably ok for someone who is
still working through the text.

Brian
Dec 15 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: M Wells | last post by:
Hi All, I'm about to begin studying for the MCDBA certification and I'm wondering what books people would recommend? The following gets a good review, so I'm planning on purchasing it: ...
8
by: noid droid | last post by:
Hi. I posted yesterday asking if C# lived up to the hype. Thus far the feedback has been all positive. (Thanks.) Can anyone suggest GOOD books for learning C# and the Visual Studio .NET IDE? ...
42
by: Andy | last post by:
and so far I'm loving it, I like the the authors don't beat around the bush and just come straight out and say what the book is sopposed to be. They assume the you have computer experience. I'm...
17
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher ...
2
by: lovecreatesbeauty | last post by:
I'm disturbed on this question on a long time. I think if I finally get understand it with your kind help, I will get close to a excellent C++ programmer. And I only can rely on your expertise and...
9
by: arnuld | last post by:
hai folks, well, it's me again and again, i am asking questions. anyway, with your help i have finalised that i will start learning c++ (as you told me that i do not need to know any OO language...
5
by: mail | last post by:
Urgent help needed! I moved an application from ASP+ACCESS to ASP+MS SQLSERVER and I have the following problem: If the join on two tables results on duplicate colum names (which appear in...
10
by: Cliff | last post by:
Greetings, I have been trying to teach myself C++ over the past few weeks and have finally came across a problem I could not fix. I made a simple program that prints out a square or rectangle...
17
Gregor McAlen
by: Gregor McAlen | last post by:
Currently after doing some research and consulting bytes forum members I started to study C++ with a long-term goal of creating my own project <add-on for current 3d game engines that will calculate...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.