Jump to content

C++ is really hard!

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
12 replies to this topic

#1
elfshadow14

elfshadow14

    Newbie

  • Members
  • PipPip
  • 14 posts
Does anyone know any good beginers books on C++.I have C++ for dummies and it's not for dummies LOL.But have been in waldens and there was a really good book that was huge but I can't remember it's name.

#2
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Hmm Yeah I agree with the title C++ is REALLY hard I cant understand a $hit!

#3
Saint

Saint

    Learning Programmer

  • Members
  • PipPipPip
  • 63 posts
Classes were the hardest part of C++ for me! I was very confused when learning them but once I used them it was all gravy! A good book is
Sams Teach Yourself C++ in 21 Days
although I had the earlier version. Are you just wanting to learn ANSI C++ or some sort of GUI C++ like Visual C++?
Hi >> Saint

#4
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Teach yourself C++ in 21 days is very good to start with, but has a number holes in it. Any book that tries to talk about C first, should be put back on the shelf. The biggest key to learning C++ is: type in EVERY example by hand and run it. Then do EVERY excercise.

C++ is more of a mindset than anything else... and yes, it can be hard.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#5
Guest_Kaabi_*

Guest_Kaabi_*
  • Guests
I gave up on it, I was learning it for awhile, but then just stopped. I would be so far if I hadn't quit...

#6
elfshadow14

elfshadow14

    Newbie

  • Members
  • PipPip
  • 14 posts
I remeber now it was Sams Teach Yourself C++ in 21 days LOL.Thanks for reminding me:D

#7
falco85

falco85

    Programmer

  • Members
  • PipPipPipPip
  • 105 posts
Funny, that is one of the first books I began reading/doing. I never finished it either though.

#8
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
languages are hard to understand when reading but once you start doing it they become simple.

#9
Guest_Jordan_*

Guest_Jordan_*
  • Guests
I'm the same way Lop. I can read all day about something but don't fully understand until I do it. Practice makes perfect. It is critical to do all of the examples in books and tutorials though.

#10
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
There's nothing like forgetting the & on the parameters of a scanf() a few times in C to learn their importance. You will never get that knowledge without getting a few really strange errors.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#11
Void

Void

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 411 posts

WingedPanther said:

There's nothing like forgetting the & on the parameters of a scanf() a few times in C to learn their importance. You will never get that knowledge without getting a few really strange errors.


Oh yeah, getting odd errors and learning how to fix them is the best path to "never forgetting". I've certainly been there before.
Void

#12
Sionofdarkness

Sionofdarkness

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 384 posts
I guess that makes sense, because then you really have to go over the code.