Welcome, Guest. Please login or register.

Author Topic: Mr. Biehl learns C  (Read 7254 times)

Description:

0 Members and 2 Guests are viewing this topic.

Offline minator

  • Hero Member
  • *****
  • Join Date: Jan 2003
  • Posts: 592
    • Show all replies
    • http://www.blachford.info
Re: Mr. Biehl learns C
« on: April 18, 2005, 11:24:46 PM »
Check out:
"C/C++ Programmer's Reference" by Herbert Schildt

link.

It's no a gigantic wordy book which goes into intricate detail, it's short and to the point.

Unlike most programming books, it's cheap:-)
 

Offline minator

  • Hero Member
  • *****
  • Join Date: Jan 2003
  • Posts: 592
    • Show all replies
    • http://www.blachford.info
Re: Mr. Biehl learns C
« Reply #1 on: April 19, 2005, 01:05:42 PM »
Quote
BeOS is the only OS that I know of where 99% of the entire OS (including the lowest level stuff)was written in C++. It has a lovely API too if you are a C++ developer.


I believe the kernel was written in C but everything else was mostly C++.

The API is wonderful and clean, it's probably a pretty good place to learn OOP and C++.


Quote
Just don't go crazy with OOP. It was developed to solve a certain number of problems and it helps to know when not to use it.  


I wrote an audio editor for BeOS, it was in (very bad) C++ but the effects were all pure C.

I'm writing a modular synth at the moment on OS X and it'll be part Objective-C but the audio processing parts will still be pure C (actually C with AltiVec extensions).