Reference manual for C++

Mar 25, 2012 at 8:38pm
Hello guys,

I'm having a hard time when I program and I'm offline. I would like to have some kind of a manual that includes allllllll standard C++ functions and implementations, at least like cplusplus.com reference, so that I could be able to program and review functions when internet isn't available.

Could you please suggest ideas or PDF reference manuals?

Thanks for any efforts :-)
Mar 25, 2012 at 8:40pm
You can just download the reference on this site with HTTrack or wget.
Alternatively, you can download a draft of the C++ standard as a pdf.
Mar 25, 2012 at 9:17pm
I found this C++ Standard

http://www-d0.fnal.gov/~dladams/cxx_standard.pdf

well, it doesn't have all C++ functions. For example is_digit() is not there...!

And downloading a whole website is really expensive. That would take more than 100 MBs at least!! and searching in it for a function isn't easy at all, don't you think?
Mar 25, 2012 at 9:23pm
That standard is outdated, one of the more recent drafts has the filename n3242.pdf.
And the reason is_digit is not in there is because it's part of the C standard library, so you need the C standard as well for completeness.

That would take more than 100 MBs at least!!

So, half a minute?

and searching in it for a function isn't easy at all, don't you think?

You can check the contents of the header that contains the function you're looking for. If you don't know which one that is, just use grep or something similar (actually, due to the naming scheme, a simple file search should be sufficient).
Last edited on Mar 25, 2012 at 9:36pm
Mar 25, 2012 at 10:21pm
@Athar n3337.pdf is even more recent :)
Mar 25, 2012 at 10:25pm
Mar 26, 2012 at 8:49am
Thanks a lot guys :-)
Topic archived. No new replies allowed.