954,496 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

List of Codes ? Encyclopedia?

Hello All,

I am new to programming and have several books on starting out with C++.
I was just curious if there was a publication that has a list of codes and there functions and Syntax. Perhaps with examples of how they are used. Kind of like an Encyclopedia?

Thanks, BandM

bandm
Newbie Poster
19 posts since Jun 2005
Reputation Points: 10
Solved Threads: 0
 

The C++ help file from Borland is pretty much what you want. It has a fine index, crossreference and lots of code samples. You can download it for free from the Borland website. It is named: bcpp.hlp

vegaseat
DaniWeb's Hypocrite
Moderator
5,987 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,417
 

Thanks for the info, but I went to the Borland site and could not find that particular download. There was many file to download. you would happen to be able to post the link here? I would greatly appreciate it. :D

Thanks, BandM

bandm
Newbie Poster
19 posts since Jun 2005
Reputation Points: 10
Solved Threads: 0
 

That is a little older help file that came with the free Borland C++ compiler. Check this website for more recent downloads of Borland helpfiles:
http://info.borland.com/techpubs/bcppbuilder/v5/updates/std.html

vegaseat
DaniWeb's Hypocrite
Moderator
5,987 posts since Oct 2004
Reputation Points: 1,345
Solved Threads: 1,417
 

u can get lotsa source codes on www.planetsourcecode.com for free

shre86
Light Poster
33 posts since Jun 2005
Reputation Points: 10
Solved Threads: 1
 

I checked out PlanetSourceCode.com, It does have a lot of codes, thats for sure. But I'm looking for more of a quick reference book on code, like

int main (int argc, char* argv[])
________^..Whats This.mean?.^

I know what the int main() is, but the int argc, and argv[] is a mystery to me. I know that my VS C++ 6.0 automatically sets these arguments when I choose a simple Application. But it would be nice to have a reference to what they do.

Thanks, BandM :)

bandm
Newbie Poster
19 posts since Jun 2005
Reputation Points: 10
Solved Threads: 0
 

>I know that my VS C++ 6.0
Visual C++ 6 is a very poor compiler for C++.

>automatically sets these arguments when I choose a simple Application
Then you should start with an empty project. Unless you're using command line arguments, there's no need to include those parameters in your definition of main.

>But it would be nice to have a reference to what they do.
Sorry, but the only reference that seems like what you want is the C++ standard. It covers the entire language in painful detail.

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You