| View previous topic :: View next topic |
| Author |
Message |
raban Newbie cheater
Reputation: 0
Joined: 25 Jun 2007 Posts: 12
|
Posted: Fri Jun 29, 2007 10:11 pm Post subject: C++ , where to start? |
|
|
I just want to learn C++ as a very beginner. I had Microsoft Visual C++ 2005 express already. Can anyone tell me where to find e-books, and other stuff like functions look-up...
Thanks for reading
|
|
| Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Fri Jun 29, 2007 10:15 pm Post subject: |
|
|
msdn.microsft.com for your "function lookup"
personally I didn't find e-books a good way to learn
|
|
| Back to top |
|
 |
oib111 I post too much
Reputation: 0
Joined: 02 Apr 2007 Posts: 2947 Location: you wanna know why?
|
Posted: Fri Jun 29, 2007 11:15 pm Post subject: |
|
|
Go to a local book store and find "Teach Yourself C++ In 21 Days"
_________________
| 8D wrote: |
cigs dont make people high, which weed does, which causes them to do bad stuff. like killing |
|
|
| Back to top |
|
 |
raban Newbie cheater
Reputation: 0
Joined: 25 Jun 2007 Posts: 12
|
Posted: Fri Jun 29, 2007 11:48 pm Post subject: |
|
|
| oib111 wrote: | | Go to a local book store and find "Teach Yourself C++ In 21 Days" |
Is it from SAMS ? I found some editions for that title on amazon.
BTW i couldnt see the function list. I mean like PHP website, they have a section where you can search for a function e.g.: MSCONNECT() and search for that and they gonna show you what that function does and how to use it... anything kind of like that for C++ ?
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Fri Jun 29, 2007 11:59 pm Post subject: |
|
|
Well yeah its called MSDN www.msdn.microsoft.com I don't think there's a list of all the API's or functions in one shot... But you know know what your searching for, you go to the website, theres a search option on the top left side. For example CreateProcess, type that in there. Usually the first one is the right one, in our case it is. So you should get to http://msdn2.microsoft.com/en-us/library/ms682425.aspx and you see, everything you need to know is there and for an example scroll down till you see "Example Code" Oh yeah btw, if you search for the API your looking for in google, most of the time a link to MSDN will come up...
_________________
|
|
| Back to top |
|
 |
TheSorc3r3r I post too much
Reputation: 0
Joined: 06 Sep 2006 Posts: 2404
|
Posted: Sat Jun 30, 2007 6:46 am Post subject: |
|
|
| zomgiownyou wrote: | | Well yeah its called MSDN www.msdn.microsoft.com I don't think there's a list of all the API's or functions in one shot... |
Actually, there is.
_________________
Don't laugh, I'm still learning photoshop! |
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Sat Jun 30, 2007 7:38 am Post subject: |
|
|
lol didn't know about that >=0
_________________
|
|
| Back to top |
|
 |
fatal rival How do I cheat?
Reputation: 0
Joined: 08 Jul 2007 Posts: 8
|
Posted: Mon Jul 09, 2007 11:10 am Post subject: |
|
|
"c++ without fear" and "c++ prime plus" are good books to learn from.
|
|
| Back to top |
|
 |
MaXiMo Master Cheater
Reputation: 0
Joined: 03 Dec 2006 Posts: 290 Location: On CEF
|
Posted: Mon Jul 09, 2007 1:37 pm Post subject: |
|
|
| is there a c++ compiler and good tut that costs no money????
|
|
| Back to top |
|
 |
lurc Grandmaster Cheater Supreme
Reputation: 2
Joined: 13 Nov 2006 Posts: 1900
|
Posted: Mon Jul 09, 2007 5:19 pm Post subject: |
|
|
Heres a FTP with over 500 eBooks, thers a couple for C++
| Code: | | ftp://194.44.214.3/pub/e-books/ |
Learn C++ in 21 Days: (kinda outdated...)
for this make sure u change
| Code: | | #include "iostream.h" |
to
| Code: | #include <iostream>
using namespace std; |
that goes the same for any other C++ library u use unless its a header file... then u add ".h" to the end of the header name
http://newdata.box.sk/bx/c/
A Bunch of other C++ Sites:
http://www.cprogramming.com/
http://www.cplusplus.com/doc/tutorial/
http://www.cppreference.com/
Windows Win32 API tut:
http://www.winprog.org/tutorial/index.html
Other Then That you can go into your Local Library or Book store and buy:
C++ for Dummies (Smaller)
C++ For Dummies (Large)
C++ in Easy Steps (i have it, its pretty good)
SAMS Learn C++ in 21 Days
etc.
|
|
| Back to top |
|
 |
|