News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

Free C Programming Book

Started by rweidner, December 16, 2009, 01:59:59 PM

Previous topic - Next topic

rweidner

I found this book and was very surprised to see how much went into this free book.  It's very rich with windows programming topics and it covers other topics well too.  Well worth the download.  http://www.q-software-solutions.de/pub/tutorial.pdf

And here is a more advanced free book from the same site.
http://www.q-software-solutions.de/pub/advanced.pdf

cd

#1
here a free online book for beginners :

teach yourself c in 21 days

its one of the sams series ;) a cool book to start with ;)

[EDIT]

sry for the second http://  .... fixed it

[EDITEND]

Vortex

Hi cd,

The link you posted does not work. Could you check it please?
Code it... That's all...

Stefan Pendl

The correct link is Teach Yourself C in 21 Days.
There was one http to much and there have been surrounding double-quotes.
---
Stefan

Proud member of the UltraDefrag Development Team

Vortex

Code it... That's all...

patrick88davis

Some free C programming sites
computer-books.us
publications.gbdirect.co.uk
techbooksforfree.com
techtoolblog.com

equinoX

Here is one of my favourite websites: http://www.jjj.de/fxt/
Lots of high quality codes. The eletronic version of the book is totally free.

Thanks to Jörg Arndt!



EdPellesC99

Quote from: Stefan Pendl on February 06, 2010, 10:57:30 AM
The correct link is Teach Yourself C in 21 Days.
There was one http to much and there have been surrounding double-quotes.

This link is at this moment dead !


CommonTater


EdPellesC99

Tx Got it ! Something to look at ........ I have C++ in 21 days and it was only fair.  So hard for one book to represent a subject !

.....Ed

CommonTater

Well, I think they're just intended as a "jump start" before taking a proper course.  I really doubt the author thought he was writing the ultimate C book... 

That's pretty much Kernahan and Richies domain...

EdPellesC99

I have never seen a disparaging remark on K & R.

   But I will give you one. 

   I did not like it. There is no substitute for communication. "Condensed" is not an end it itself. I have bought many computer books,
they differ Night and Day as to whether they were worth the price. I usually by a used version so I do not waste money.

  I think I paid $40.00 for K&R II, and after looking it thru, felt like I was taken......

  Most of what I have learned has come from the cpp.chm, in C, and the win32api.chm for win32, and website tutorials.

  There is so little on advanced C, and when you think you found one there is a 95% probability that you will be disappointed.

  Free is worth a look at, at least you will not feel taken.

  Money is no problem, finding a good book to use it on IS FOR SURE !

  It is a lot of experimentation and re-inventing the wheel to progress beyond the fundamentals in C: so it is SLOW !

  OK enough ranting for now :)

  ...Ed


CommonTater

#12
One of the very best C language resources you can get is available right in POIDE... Open Pelles C... clik on HELP then contents and start reading... Every function is detailed and indexed.

When writing code, put your typing cursor on any keyword or function and press F1...

The CPP help file you get from cppreference.com is NOT C-99, it's C-98 and C++, mostly specific to MSVC++.
You will find it rather confusing when stuff from there starts throwing syntax errors in Pelles C... C++ is not "advanced C" it is a whole other programming language.  (With the most tragicly bad name I've ever seen :D )

The K&R book, for all it's shortcomings is kinda the C Bible, since it was written by the guys who wrote C itself.  I don't like it much as a "read through"... but it's a great reference text.