473,395 Members | 2,468 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,395 software developers and data experts.

What is the single most helpfull guide/reference one could go to!?

When learning the C programing languages, i have had and still am
having the problem of not being able to find answers to many
questions. Is their an overall guide/reference that someone knows?
Nov 14 '05 #1
6 1635
erebus- wrote:
When learning the C programing languages, i have had and still am
having the problem of not being able to find answers to many
questions. Is their an overall guide/reference that someone knows?


This group, plus K&R2ed, are probably the best resources.

/david

--
"As a scientist, Throckmorton knew that if he were ever to break wind in
the echo chamber, he would never hear the end of it."

Nov 14 '05 #2
erebus- wrote:
When learning the C programing languages, i have had and still am
having the problem of not being able to find answers to many
questions. Is their an overall guide/reference that someone knows?


The single most definitive reference is the ISO C Standard, ISO/IEC 9899.
There is a new version, dated 1999, but the Real World hasn't caught up
yet, and most compilers still implement the 1990 Standard.

The single most /helpful/ reference? Well, that's a bit harder. The language
of the Standard is not intended to be friendly, but to be definitive. The
most /helpful/ reference for a relative beginner is probably "The C
Programming Language", 2nd edition, by Brian W Kernighan and Dennis M
Ritchie (by the way, Dennis Ritchie also wrote the C language itself). It's
a remarkable book. Short by modern standards at 272 pages, it is
nevertheless packed to overflowing with useful, well-explained material.

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #3

"Richard Heathfield" <in*****@address.co.uk.invalid> wrote in
The single most definitive reference is the ISO C Standard, ISO/IEC > 9899.
The single most /helpful/ reference? "The C Programming Language",
2nd edition, by Brian W Kernighan and Dennis M Ritchie

What is badly needed is a second book of C, for those who know the basics
but want to know how to apply it. For this I recommend "C Unleashed" by R.
Heathfield.
Nov 14 '05 #4
On Sun, 21 Feb 2004, erebus- wrote:
When learning the C programing languages, i have had and still am
having the problem of not being able to find answers to many
questions. Is their an overall guide/reference that someone knows?


Depends on how much money you are willing to spend. You could hire Dan
Pop, Richard Heathfield or one of the many other regulars of comp.lang.c
to be your guide.

I'd recommend the follow:

1) Get a good book on C. People like different writing styles so there
is no one answer on this. Use Google newsgroups to search for past
discussion on what is a good book. Search for "site:comp.lang.c book
recommendation" and you should find something.

2) Find a newsgroup that can help you with your specific implementation.
There is nothing more frustrating then not being able to get the compiler
to work properly. You don't need that frustration while you are learning
to program.

3) Find and read the FAQ for this newsgroup. Make sure you understand what
you read. If you don't understand WHY the answer is what it is then ask.

4) Try some of the assignments you will find in books. Post your code to
comp.lang.c when it fails to work. If the code is large, ask in
comp.programming for techniques on how to isolate a defect in your code.
Once you get it down to a small code snippet, if it is still not obvious
to you, post it to comp.lang.c.

5) Learn to use search engines. Search comp.lang.c. Someone has probably
had the same problem you are having.

6) If you can afford it, get a local tutor or take a class. I occasionally
post ads at the local universities offering my services. I often find
students struggle for days only to be frustrated. I can sometimes
straighten them out in an hour or two. Don't confuse a good tutor with
someone who will do the homework for you. You want to hire someone with
teaching experience and not just programming experience.

Most importantly is to try things and ask questions. Even if you think you
have the code perfect it never hurts to post it to comp.lang.c and see if
you are making a bad assumption.

--
Send e-mail to: darrell at cs dot toronto dot edu
Don't send e-mail to vi************@whitehouse.gov
Nov 14 '05 #5
da*****@NOMORESPAMcs.utoronto.ca.com (Darrell Grainger) wrote in message news:<Pi******************************@drj.pf>...
On Sun, 21 Feb 2004, erebus- wrote:
When learning the C programing languages, i have had and still am
having the problem of not being able to find answers to many
questions. Is their an overall guide/reference that someone knows?


Depends on how much money you are willing to spend. You could hire Dan
Pop, Richard Heathfield or one of the many other regulars of comp.lang.c
to be your guide.

I'd recommend the follow:

1) Get a good book on C. People like different writing styles so there
is no one answer on this. Use Google newsgroups to search for past
discussion on what is a good book. Search for "site:comp.lang.c book
recommendation" and you should find something.

2) Find a newsgroup that can help you with your specific implementation.
There is nothing more frustrating then not being able to get the compiler
to work properly. You don't need that frustration while you are learning
to program.

3) Find and read the FAQ for this newsgroup. Make sure you understand what
you read. If you don't understand WHY the answer is what it is then ask.

4) Try some of the assignments you will find in books. Post your code to
comp.lang.c when it fails to work. If the code is large, ask in
comp.programming for techniques on how to isolate a defect in your code.
Once you get it down to a small code snippet, if it is still not obvious
to you, post it to comp.lang.c.

5) Learn to use search engines. Search comp.lang.c. Someone has probably
had the same problem you are having.

6) If you can afford it, get a local tutor or take a class. I occasionally
post ads at the local universities offering my services. I often find
students struggle for days only to be frustrated. I can sometimes
straighten them out in an hour or two. Don't confuse a good tutor with
someone who will do the homework for you. You want to hire someone with
teaching experience and not just programming experience.

Most importantly is to try things and ask questions. Even if you think you
have the code perfect it never hurts to post it to comp.lang.c and see if
you are making a bad assumption.


Thank you very much for that reply. I will try to follow through with
the advice that you've given me the best that I can. I just went out
to my local Fry's Elecrtonics and bought me C: The Complete Reference
and The C Programming languages, hoping that they will help me along
the way, and will improve what i already know. I'm at that stage where
pointers, dynamic memory allocation, and buffered file i/o are the
toughest things going on in my life, yet the ones that satisfy me the
most. I'm reading the FAQ at this very moment :), and if you noticed,
that was actually my first post here.
Nov 14 '05 #6
"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote:
"Richard Heathfield" <in*****@address.co.uk.invalid> wrote in
The single most definitive reference is the ISO C Standard, ISO/IEC >

9899.

The single most /helpful/ reference? "The C Programming Language",
2nd edition, by Brian W Kernighan and Dennis M Ritchie

What is badly needed is a second book of C, for those who know the basics
but want to know how to apply it. For this I recommend "C Unleashed" by R.
Heathfield.


Et aliis, some of whom are also to be found in this 'ere group. I second
this recommendation, but I do recommend you take a sturdy bag when you
go pick it up - a mere plastic sack is guaranteed to tear.

Richard
Nov 14 '05 #7

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

Similar topics

3
by: Patrick | last post by:
Hi I am currently learning JS and have heard a lot of good about that book even if it's a reference and better suited for intermediate to experienced users. My local bookstore has both the 3rd...
2
by: colin.steadman | last post by:
I often use the HTML reference guide at Microsoft which is located here: http://msdn.microsoft.com/library/default.asp?url=/workshop/author/html/reference/elements.asp It gives a descriptions...
6
by: Efim | last post by:
Hi all, Due to performance issue, I want to pevent execution of ToString() function in the code like the following: if(reporting_level & DEBUG_LEVEL) log(reporting_level,string.Format("Event of...
3
by: Fred | last post by:
hi, can i somehow force IE to not split the text of my labels on multiple lines (they r in a datagrid) thanks
1
by: rmli | last post by:
Oracle Server Quick Reference Guide http://quickdba.blogspot.com/2006/05/oracle-server-quick-reference-guide.html Visit daily to get more updated articles
5
by: petermichaux | last post by:
>From the FAQ The only book currently endorsed by c.l.j. regulars is: JavaScript: The Definitive Guide, 4th Edition By David Flanagan ISBN:0-596-00048-0 (Also by David Flanagan: JavaScript...
1
by: FAQ server | last post by:
----------------------------------------------------------------------- FAQ Topic - What books cover javascript? ----------------------------------------------------------------------- The only...
26
by: K.J.Williams | last post by:
Hello, A friend and I want to learn PHP but we have two totally different programming backgrounds. I have experience with procedural programming in C, and he has experience with Visual BASIC....
6
by: | last post by:
Hi, I used extensively python and now I find this mess with strings, I can't even reproduce tutorial examples: File "<stdin>", line 0 ^ SyntaxError: 'ascii' codec can't decode byte 0xc4 in...
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
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.