I've learned it from this guycookieXkiller said:whats the best way to learn c++ ?Lacsapix said:#1 Visual Basic
#2 Html
#3 java/C++
the teacher here has full tutorials of almost every programing language out there.
I've learned it from this guycookieXkiller said:whats the best way to learn c++ ?Lacsapix said:#1 Visual Basic
#2 Html
#3 java/C++
Or it can be a pain if he does learn it without background knowledge and no instructions.CyberSkull said:Learning C first will make you appreciate all the higher level languages even more.CyberSkull said:snip![]()
Over several gruelling years.cookieXkiller said:whats the best way to learn c++ ?Lacsapix said:#1 Visual Basic
#2 Html
#3 java/C++
That is why I would go to Pascal or Modula first (before C or C++, at least)...CyberSkull said:Learning to manage pointers is a pain, but it will make you a better programmer. C++ has the same issues, but instead of remembering to free your mallocs, you have to remember to delete all your news. I think object theory, especially as how it is implemented in C++, is too much to foist on a new programmer when they still don't understand pointers.hermes200 said:I would say go straight to C++ if that is an option.CyberSkull said:For programming, start with C. Despite what Microsoft would have your believe, C is the foundation that pretty much every OS and device is built on. With C you will learn not only the basics of programming but also a good foundation in how computers work.
C has some pretty lousy pointers handling that makes it harder to learn if you are new or careless. Sure its powerful, but its not "rookie friendly"...
Personally I wouldn't use knowledge of programming to pick up girls, but I started with Pascal and moved onto Delphi which is pretty much object-oriented Pascal. Next would be java then probably C++Annoying Turd said:I'm such a beginner at coding I can't write a webpage. I want to learn programming so I can be useful someday, and maybe girls might finally like me.
What programming language is best to start learning with? Why? How am I supposed to begin earning the skills to become an expert programmer?
What should I keep in mind while programming? Anything I must know? Programming tips?
Personally I wouldn't use knowledge of programming to pick up girls, but I started with Pascal and moved onto Delphi which is pretty much object-oriented Pascal. Next would be java then probably C++Annoying Turd said:I'm such a beginner at coding I can't write a webpage. I want to learn programming so I can be useful someday, and maybe girls might finally like me.
What programming language is best to start learning with? Why? How am I supposed to begin earning the skills to become an expert programmer?
What should I keep in mind while programming? Anything I must know? Programming tips?
I just started programming in school last year and they started me on Java first. I love it. Sure you will see results faster with VB, but that is because a lot of the programming is done for you when it comes to the GUI. Java is very flexible when you have all the tools, you can do almost anything. Minecraft is written in Java for instance.Annoying Turd said:I'm such a beginner at coding I can't write a webpage. I want to learn programming so I can be useful someday, and maybe girls might finally like me.
What programming language is best to start learning with? Why? How am I supposed to begin earning the skills to become an expert programmer?
What should I keep in mind while programming? Anything I must know? Programming tips?
Semi-colons are the bane of new programmers until you learn that "Compiler found OVER9000 errors" basically means, "you missed a colon somewhere, I'm not telling you where though. trolololol!"Qitz said:Lots of great advice. Just to add my own advice, bookmark the website http://w3schools.com/ it comes in handy A LOT when you need to remember what the hell that function was, or what it did. Specially when you get into the fun shit like PHP and MySQL. Nothing like having PHP tell you the errors 6 lines below the actually one because that Semi-colon DIDN'T WANT TO BE ON THAT SPOT!
Having done a Software Engineering degree, I'd advise the opposite. Most of the really good programmers I know are self-taught, who just happen to go along with the degree. The degree itself attempts to teach you stuff you will never need, because the syllabus is always playing catch up.AC10 said:If you want to become an expert programmer you should start off with a degree in computer science or software engineering and go from there.
Yup. My first thought when I see any error is "SHIT! Where'd I miss the semi-colon?!"dillinger88 said:Semi-colons are the bane of new programmers until you learn that "Compiler found OVER9000 errors" basically means, "you missed a colon somewhere, I'm not telling you where though. trolololol!"Qitz said:Lots of great advice. Just to add my own advice, bookmark the website http://w3schools.com/ it comes in handy A LOT when you need to remember what the hell that function was, or what it did. Specially when you get into the fun shit like PHP and MySQL. Nothing like having PHP tell you the errors 6 lines below the actually one because that Semi-colon DIDN'T WANT TO BE ON THAT SPOT!