473,624 Members | 2,150 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Learning C?

Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?

later,
charles.....
Mar 28 '07 #1
53 2333
"***** charles" <sh*******@sbcg lobal.netwrites :
I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?
Many years ago, I read a basic tutorial. Then I bought a copy of
the standard. Then I started reading comp.lang.c.
--
"Some people *are* arrogant, and others read the FAQ."
--Chris Dollin
Mar 28 '07 #2
***** charles said:
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?
I mis-learned C on a three-month course, 35 hours a week. I then
mis-applied that mis-knowledge for a few years, and became a sort of
mis-expert. It wasn't until late 1998 that I discovered I'd been
abusing the interface spec for the entry point, for almost a decade!

In 1999, I started reading comp.lang.c on a regular basis, and it took
perhaps two or three months of daily reading-the-whole-feed and many
(sometimes rather animated) discussions to mend my misunderstandin gs.
Much kudos to Martin Ambuhl, Billy Chambless, Dann Corbit, Chris
Dollin, Lawrence Kirby, Kaz Kylheku, Mikey Lee, Joe Maun, Ben Pfaff,
Dan Pop, "Noone Really", Will Rose, Michael Rubinstein, Richard Stamp,
Steve Summit, Chris Torek, Stephan Wilms, Dik Winter, and no doubt many
others whose names temporarily escape me, for their patience over that
period.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Mar 28 '07 #3
"Richard Heathfield" <rj*@see.sig.in validwrote in message
news:fp******** *************@b t.com...
***** charles said:
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?

I mis-learned C on a three-month course, 35 hours a week. I then
mis-applied that mis-knowledge for a few years, and became a sort of
mis-expert. It wasn't until late 1998 that I discovered I'd been
abusing the interface spec for the entry point, for almost a decade!

In 1999, I started reading comp.lang.c on a regular basis, and it took
perhaps two or three months of daily reading-the-whole-feed and many
(sometimes rather animated) discussions to mend my misunderstandin gs.
Much kudos to Martin Ambuhl, Billy Chambless, Dann Corbit, Chris
Dollin, Lawrence Kirby, Kaz Kylheku, Mikey Lee, Joe Maun, Ben Pfaff,
Dan Pop, "Noone Really", Will Rose, Michael Rubinstein, Richard Stamp,
Steve Summit, Chris Torek, Stephan Wilms, Dik Winter, and no doubt many
others whose names temporarily escape me, for their patience over that
period.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
What would you recomend to a person who wanted to start from scratch?
(I have writen code on other languages including asm) Just never learned C.

later.....
Mar 28 '07 #4
***** charles wrote, On 28/03/07 18:55:
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?

K&R2 + a human mentor who was very much my junior. He had done C but
very little programming experience I had a lot of experience but none in C.
--
Flash Gordon
Mar 28 '07 #5
Flash Gordon wrote:
>
***** charles wrote, On 28/03/07 18:55:
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?

K&R2 + a human mentor who was very much my junior. He had done C but
very little programming experience I had a lot of experience but none
in C.
I had K&R (I suppose it could be retronymed "K&R1"), a CP/M computer,
and a floppy with a C compiler on it. I had a lot of programming
experience in several high-level languages, and a couple of assembly
languages. Later, we got a Unos-based system to get more experience
with C.

Note that, technically, it was "C plus [what was to become] POSIX".

Nothing beats hands-on experience. If you have someone who could
be a mentor, by all means do it as well.

I'm sure if you search this group's archives, you'll find numerous
references to books and websites, both good and bad. Use the good
ones, and avoid the bad ones like the plague. (For example, there
was a recent posting that quoted a book which talked about how to
pass an array by value [as opposed to by reference] that was simply
wrong, on several counts.)

Note that I find, even after 20+ years of programming in C, that I
still have things that I mis-learned. There are also things that I
have learned from reading this group which would have made my life
a lot easier if I had learned them years ago. (Mostly, it's things
that I've "worked around", not knowing that I didn't have to "work
around" them in the first place. Others are things that would have
let me write things more efficiently.)

Finally, it's much easier to learn the right things from the start
than it is to unlearn the wrong things.

--
+-------------------------+--------------------+-----------------------+
| Kenneth J. Brody | www.hvcomputer.com | #include |
| kenbrody/at\spamcop.net | www.fptech.com | <std_disclaimer .h|
+-------------------------+--------------------+-----------------------+
Don't e-mail me at: <mailto:Th***** ********@gmail. com>
Mar 28 '07 #6
***** charles wrote:
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?
I don't know if the program was ever updated for C89, or even if it
still exists, but I learned C using "learn C" on a VAX. It was the
forerunner of on-line tutorials, taking the user through the exercises
in K&R.

--
Ian Collins.
Mar 28 '07 #7
On Wed, 28 Mar 2007 12:55:20 -0500, charles wrote
(in article <l6************ **@newssvr22.ne ws.prodigy.net> ):
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?
All of the above, plus a lot of time, energy, mistakes, debugging, more
time, more energy...

--
Randy Howard (2reply remove FOOBAR)
"The power of accurate observation is called cynicism by those
who have not got it." - George Bernard Shaw

Mar 28 '07 #8
Richard Heathfield wrote:
>
***** charles said:
Hi all,

I would like to know how all of you learned C.
Was it books, Internet, human mentor, class or other?

I mis-learned C on a three-month course, 35 hours a week. I then
mis-applied that mis-knowledge for a few years, and became a sort of
mis-expert. It wasn't until late 1998 that I discovered I'd been
abusing the interface spec for the entry point, for almost a decade!

In 1999, I started reading comp.lang.c on a regular basis, and it took
perhaps two or three months of daily reading-the-whole-feed and many
(sometimes rather animated) discussions to mend my misunderstandin gs.
I learned C from a couple of Schildt books in about a month.
I didn't feel like I was straightened out
until after reading clc for about two years.

--
pete
Mar 28 '07 #9
On Wed, 28 Mar 2007 12:57:50 -0600, "***** charles" <sh*******@sbcg lobal.net>
wrote:
>
What would you recommend to a person who wanted to start from scratch?
(I have writen code on other languages including asm) Just never learned C.
I clearly would recommend K&R's "The C Programming Language" then! It's a
classic.

"This book is meant to help the reader learn how to program in C. It contains
a tutorial introduction to get new users started as soon as possible, separate
chapters on each major feature, and a reference manual. Most of the treatment
is based on reading, writing and revising examples, rather than on mere
statements of rules. For the most part, the examples are complete, real
programs rather than isolated fragments. All examples have been tested
directly from the text, which is in machine-readable form. Besides showing how
to make effective use of the language, we have also tried where possible to
illustrate useful algorithms and principles of good style and sound design.

The book is not an introductory programming manual; it assumes some
familiarity with basic programming concepts like variables, assignment
statements, loops, and functions. Nonetheless, a novice programmer should be
able to read along and pick up the language, although access to a more
knowledgeable colleague will help."

(K&R, The C Programming Language, 2nd edition)
G. H.

--

E-mail: info<at>simple-line<Punkt>de
Mar 28 '07 #10

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

Similar topics

5
2147
by: Ron Stephens | last post by:
The newly rechristened Python Learning Foundation is a web site dedicated to the assistance of people learning the Python programming language. Features include: 1. Daily lists of new and recent Python-related web articles, Sourceforge projects, and Vaults of Parnassus listings. These are generated using Hans Nowak's Python web spider, mygale.py, and are automatically updated each day. (You can visit Han's interesting blog at <a href =...
29
3475
by: Jhon smith | last post by:
Hi,all,I was just wondering if I am likly to have any problems trying to learn C from older books,I have some from the late 80`s,mid/late 90`s. I am using Dev-C++ on the pc windows platform,But I have noticed small differnces in the books such as,int main(),main(void),fprintf,and others,just wondering if these older books are still worth trying to learn from as Im on a very tight budget and can`t really afford any thing else,or are they...
4
2053
by: Christian Blackburn | last post by:
Hi Gang, I saw this for sale online: Microsoft Visual Basic.NET Deluxe Learning Edition Version 2003. I'm wondering is the CD that's bundled with the learning edition just a digitized version of the book or is it an interactive tutorial? Thanks, Christian Blackburn
1
9623
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej and I was wondering if anyone here would be able to give me some tips for young players such as myself, for learning the language. Is this the best Newsgroup for support with JAVA?
7
1579
by: Max | last post by:
On monday I start a semester course in Python (the alternative was Java). I was looking through the course outline and noticed the following: 1) UserDict is used. This is deprecated, right? 2) There is no mention of list comprehensions, but map and filter are taught early and then revisited later. I don't think this is good: list comprehensions are, IMO, one of Python's great features, Psyco prefers them, they're more pythonic, and map...
36
2510
by: utab | last post by:
Dear, I have experince in C( numerical projects, like engineering problems, scientific applications) I have the basic notion of C++ also, I have read Accelerated C++ until Chapter 7, however it seems that it discusses the std and the other part of the language with your own abstractions. Is that better to read a book first on the basic concepts of C++ language (but not the C part) that gives the basics as if the reader is a beginner...
2
1240
by: bokiteam | last post by:
Hi All, Here is my idea to save learning time - Personal learning book. What we really need is somebody really familiar our learning experience, and then takes the example to teach us. Save the learning time. For example, a person David who understands JAVA, VB, C programming, he doesn't want to pay too much time to study a C# programming book. If
78
4161
by: arnuld | last post by:
hai all, i am standing on a "crossroad to C++". I am here in front of you as i have a problem. i will be brief. Please do not think: "arnuld is sick", i am really struggling & doing hard-work to become a Modern C++ Programmer & i am feeling as if i am standing on a crossroad. i am asking because every time i made a decision on my own, in my past, i always ran into huge wastage of time, money & effort. that is why i am posting it here:
0
1551
by: LK~ICT | last post by:
Sri Lanka rural e-learning project seeks corporate support Dec 04, 2007 (LBO) - A Sri Lankan e-learning initiative for rural students is seeking corporate sector support to expand and cover 400 computer centers around the island, its designers said. The Shilpa Sayura project initiated by eFusion, a local software company, is a learning tool for rural students who do not have the necessary number of teachers and lack resources to...
16
1749
by: John Salerno | last post by:
Just something that crosses my mind every time I delve into "Learning Python" each night. Does anyone see any value in learning Python when you don't need to for school, work, or any other reason? I mean, sure, there's value in learning anything at any time, but for something like a programming language, I can't help but feel that I will be mostly unable to use what I learn simply because I have no reason to use it. The *process* of...
0
8236
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8173
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8679
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8475
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6110
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5563
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4079
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4174
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2606
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.