
-----------------------------------
Bcap
Sat Feb 21, 2004 12:39 pm

New to C++
-----------------------------------
Hey guys

I'm in Grade 11, and i am currently taking the Grade 12 Tech programming course at my school. I've done the grade 10 and 11 course already, with 98% in both. 

Now because i have pretty much learned everything there is in turing, combined with the fact that turing is very limited, i would really really like to learn C++.

Now i know NOTHING about it, but i am very knowledgable with Turing.

I need to know a few things, can someone give me the basics on C++, or where i can find them out. And also, what compiler to i use to program in? and where can i get it (ps. i dont want to buy it) lol.

Thanks a lot guys, you're all great!

-Bryan

-----------------------------------
Catalyst
Sat Feb 21, 2004 12:45 pm


-----------------------------------
Welcome to the forums Bcap.


For a good compiler/IDE goto http://www.bloodshed.net and get DevC++, it's free and easy to use. 

For some introductory tutorials/books go here:
http://www.freeprogrammingresources.com/cppbooks.html

For some reference on how to use the standard libraries go here:
http://www.cplusplus.com

And if you want to learn some graphics programming (OpenGL), after you're comfortable with C++, go here:
http://nehe.gamedev.net

-----------------------------------
Andy
Sat Feb 21, 2004 2:13 pm

Re: New to C++
-----------------------------------
I'm in Grade 11, and i am currently taking the Grade 12 Tech programming course at my school. I've done the grade 10 and 11 course already, with 98% in both. 
i am very knowledgable with Turing.


oh i love it when ppl come in here thinking they are big shots... here is a tip, dont brag about ur skillz cuz there are ppl in here who are better than you in everything... juss thought u should know that

well i'm Andy, ppl call me dodge cuz of my pic, and i am the whatdotcolor mod, welcome. C++ is way different from turing, so dont count on learning everything by yourself, look around here and u "mite" learn a thing or two

-----------------------------------
Mazer
Sat Feb 21, 2004 7:59 pm


-----------------------------------
Easy killer, he never said (or implied) that he was better than everyone at everything. And we don't call you dodge because of that... pic, we call you dodge because that's what you entered as your user name when you signed up.  :P 

Bcap:
Once you've got a compiler (or even before), a good site to learn the basics is www.cprogramming.com

-----------------------------------
kryten99
Sun Jun 20, 2004 8:38 pm


-----------------------------------
Hey

I'm new to C and C++ in the sense that I took courses on them last year and then promptly forgot everything I've learned.

I was wondering if anybody would know where I could find a website that concisely summarizes important C++ syntax. Examples with commentation would be ideal

-----------------------------------
Mazer
Mon Jun 21, 2004 6:37 am


-----------------------------------
Hey

I'm new to C and C++ in the sense that I took courses on them last year and then promptly forgot everything I've learned.

I was wondering if anybody would know where I could find a website that concisely summarizes important C++ syntax. Examples with commentation would be ideal

...a good site to learn the basics is www.cprogramming.com

-----------------------------------
wtd
Fri Jul 23, 2004 7:52 pm


-----------------------------------
...a good site to learn the basics is www.cprogramming.com

No.  Unfortunately, it's not.  I read through some of the material on the site, and a great deal of it is dated and incorrect.  It appears the authors in many cases don't understand programming very well themselves.

-----------------------------------
DanShadow
Mon Jul 26, 2004 6:21 pm


-----------------------------------
Heh, no big suprise, but im in the near same situation as Bcap. I first started learning Java, it got pretty (dull?). So I moved onto CPP, which is better. Ive learned the basics just by going to the public library and taking out "For Dummies" 
[b]Turing[/b]
var text : string
put "Hello World!"
put "Type some text: "..
get text
put "You typed in '",text,"'."
[b]CPP[/b]
/*include other basic includes, like iostream*/
include 
int main (*argc...  /*the basic main code, I forgot it, uhoh.*/
{
string text;
cout 