473,503 Members | 8,959 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Tutorial for beginner/ Tutorial voor beginner

Hello, does someone have / know a good C++ tutorial for beginnners? I would prefer Dutch, but English is also fine.

Hoi, heeft / kent iemand nog een goede C++ tutorial voor beginners? Het liefste in Nederlands, maar Engels is ook goed.

Thnx,
Rensjuh
Jul 22 '05 #1
7 2909
Rensjuh <re**********@hccnet.nl> spoke thus:
Hello, does someone have / know a good C++ tutorial for beginnners? I would prefer Dutch, but English is also fine.


The FAQ for this group isn't really a tutorial, and it's in English.
That said, you may nevertheless find it useful:

http://www.parashift.com/c++-faq-lite/

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Jul 22 '05 #2
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote in message news:<cg**********@chessie.cirr.com>...
Rensjuh <re**********@hccnet.nl> spoke thus:
Hello, does someone have / know a good C++ tutorial for beginnners? I would prefer Dutch, but English is also fine.


The FAQ for this group isn't really a tutorial, and it's in English.
That said, you may nevertheless find it useful:

http://www.parashift.com/c++-faq-lite/


I think that C++ From The Ground Up by Herbert Schildt is a good book
to learn C++ from. That is how I learned it. Otherwise,
www.cprogramming.com has some tutorials, although I do not like them.
www.gametutorials.com also has some C and C++ tutorials. It can be
difficult to find C++ tutorials on the web that are good, I prefer to
use books. I reccomend going to a local bookstore and looking at the
C++ books. Make sure that the book is fairly recent, within your price
range, written for your skill level, and that the author is not
extremely bland for you. Also, all the websites are in English.
Jul 22 '05 #3
Scott Simontis <ag********@comcast.net> spoke thus:
I think that C++ From The Ground Up by Herbert Schildt is a good book
to learn C++ from.


Most people here (and on comp.lang.c) would disagree, but YMMV (as
well as OP's).

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Jul 22 '05 #4
"Scott Simontis" <ag********@comcast.net> wrote in message
news:55**************************@posting.google.c om...
Christopher Benson-Manica <at***@nospam.cyberspace.org> wrote in message

news:<cg**********@chessie.cirr.com>...
Rensjuh <re**********@hccnet.nl> spoke thus:
Hello, does someone have / know a good C++ tutorial for beginnners? I
would prefer Dutch, but English is also fine.
The FAQ for this group isn't really a tutorial, and it's in English.
That said, you may nevertheless find it useful:

http://www.parashift.com/c++-faq-lite/


I think that C++ From The Ground Up by Herbert Schildt is a good book
to learn C++ from. That is how I learned it.


http://ma.rtij.nl/acllc-c++.FAQ.html#q6.4

-Mike
Jul 22 '05 #5
"Christopher Benson-Manica" <at***@nospam.cyberspace.org> wrote in message
news:ch**********@chessie.cirr.com...
Scott Simontis <ag********@comcast.net> spoke thus:
I think that C++ From The Ground Up by Herbert Schildt is a good book
to learn C++ from.


Most people here (and on comp.lang.c) would disagree, but YMMV (as
well as OP's).


Well, people certainly have a lot of time on their hands. I haven't read the
book in question, but the first few pages of
http://www.lysator.liu.se/c/schildt.html gave me a new understanding of the
word minutiae. I can only imagine it is a beginners book and not actually
designed to split standards hairs. Now I won't recommend it or anything, but
the list of trivia on the web site for a first programming book was amazing.
Has this guy seen my 3rd grade science book?

Examples of things I don't care about in my first program, the authors
comments are prefaced by ##, with the idiot nitpicker following (my comments
begin with Huh?)

===========================
"
## No other keywords are allowed in a conforming program.
Of course, no other keywords are allowed in a strictly conforming program.
"
Huh? What does this even mean _strictly_ speaking.

"
## x = 'A'; /* give x the value 65 */
This comment, and the following text, leave the reader believing that 'A'
must have the value 65, and by extension that C requires the use of ASCII
codes. This is of course false, but it would be hard to tell from the book.
"

Huh? ^2 I'm trying to print "Hello, World!" - Do I need EBCDIC vs ASCII
right now?!!

## First, the null character may not be used except
## in the first byte of a multibyte sequence.

I read this as meaning that the multibyte character <00><94> is legal while
the multibyte character <94><00> is not. In actual fact, the standard
states that a zero byte must not appear in any multibyte character other
than the null character (i.e. the end of string indicator).

Huh? Isn't that the first byte in a multibyte character? Who cares if a 94
comes after the null? Am I supposed to care about the garbage after my
string's null? No.

===========================

I got bored after that.
--
Mabden
Jul 22 '05 #6
"Mabden" <mabden@sbc_global.net> wrote in message news:<d7******************@newssvr27.news.prodigy. com>...

[ ... ]
Examples of things I don't care about in my first program, the authors
comments are prefaced by ##, with the idiot nitpicker following (my comments
begin with Huh?)


The bottom line is pretty simple: it's perfectly fine for a beginner's
book to sipmlify, gloss over details, etc.

It's NOT fine (or even forgivable) for it to teach things that are
actually wrong. It's absolutely true that most of the things you
pointed out don't matter to a beginner -- but that points out problems
in the book rather than in its critique. The book should simply have
ignored the things it wasn't really going to teach. As-is, the book
contains as much misinformation as it does information, and makes it
virtually impossible for the beginner to sort out what most of it
really means at all.

Most regular members of the C and C++ related newsgroups dislike
Herbert Schildt's books for a very specific reason: people who study
his books consistently end up asking questions that are based on false
assumptions. To solve the problems, the regulars have to go back to
the first principles and give long, boring explanations about why and
how most of the assumptions the person is making are blatantly wrong,
and the person will have to go forget most of what he thinks he knows
before he has any hope of learning things that are correct.

IMO, anybody writing a book on programming should be required to take
an equivalent of (at least part of) the Hippocratic oath -- "First, do
no harm." Likewise, books should be judged (to a large extent) based
on the degree to which they meet that criterion -- and in that regard,
every one of Herbert Schildt's books is a spectacular failure.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Jul 22 '05 #7
"Jerry Coffin" <jc*****@taeus.com> wrote in message
news:b2*************************@posting.google.co m...
"Mabden" <mabden@sbc_global.net> wrote in message news:<d7******************@newssvr27.news.prodigy. com>...
Most regular members of the C and C++ related newsgroups dislike
Herbert Schildt's books for a very specific reason: people who study
his books consistently end up asking questions that are based on false
assumptions. To solve the problems, the regulars have to go back to
the first principles and give long, boring explanations about why and
how most of the assumptions the person is making are blatantly wrong,
and the person will have to go forget most of what he thinks he knows
before he has any hope of learning things that are correct.


I can see that. I haven't been posting here long enough to be annoyed by
things that I see Ranting Regulars (no offense, y'all) pick on. So to me, it
looks like trivial stuff and I want to yell, "Get over it!!" But I guess the
pollution factor and the time factor really haven't hit me yet, so it
doesn't really seem important to me personally. And it seems like some RR
spend more time shouting down others than just ignoring the post and moving
on, and I do have to read those. I mean, that's what killfiles are FOR (and
I get the feeling I'm getting close to ending up there myself, but it's just
my opinion, sorry)!

My point is, when does shouting down a troll make a person or group a troll
themselves. Why do I have to read 10 posts saying don't read the first post?
Wouldn't it just go away quicker via silence versus hoot - and - holler?

--
Mabden
Jul 22 '05 #8

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

Similar topics

1
1828
by: Brian Tozer | last post by:
On http://www.phpdeveloper.org/section/tutorial/43 there is what seems like a good tutorial for a beginner but there is no mention of whether it should all be within one .html file, one .php file,...
1
1730
by: Pim van der Eijk | last post by:
XML 2004 Award voor ''Best Powered XML Site'' De XML gebruikersgroep geeft traditioneel aan het eind van het jaar tijdens het jaarlijkse congres een award aan de persoon of het initiatief die in...
9
1367
by: enea | last post by:
http://www.ends.cx.la/
7
1525
by: Alf P. Steinbach | last post by:
I have to shop Christmas gifts (and clean up... ;-)) before leaving on Christmas holiday tomorrow, where I'll effectively be without a network connection until January 6th, so I just posted what I...
0
1440
by: Alf P. Steinbach | last post by:
The seventh part of my attempted Correct C++ tutorial is now available, although for now only in Word format (use free Open Office if no Word), and also, it's not yet been reviewed at all -- ...
4
1606
by: Peter Gloor | last post by:
Hello, I have some difficulties to understand the new concepts for data handling and data access in Visual C# 2005 Windows applications. The questions are when and how to use which component...
10
3057
by: Safalra | last post by:
When a poster in a forum I frequent said they were beginning to learn HTML, I thought I should direct them to a good HTML tutorial so that they wouldn't start using <blink> and the like....
11
2902
by: Magnus Lycka | last post by:
While the official Python Tutorial has served its purpose well, keeping it up to date is hardly anyones top priority, and there are others who passionately create really good Python tutorials on...
1
1773
by: Blue_hatter | last post by:
Hey Guys, I'm a newbie to the whole C++ Programming thing as I think I said before in a post. The thing is, I have this idea that might help me to learn at a better pace than I am doing currently....
0
7207
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,...
0
7357
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
7468
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...
0
5598
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5023
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...
0
4690
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...
0
3180
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...
0
3171
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
402
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.