On Monday 24 March 2003 07:41 pm, Tom Emerson wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Monday 24 March 2003 4:32 pm, Steven T. Hatton wrote:
I'm looking for a good online reference for C/C++. ... Are any included with SuSE 8.1?
dunno if they are good, bad, or indiferent, but there is always the "man" pages -- they cover pretty much all of the library and many API's for X and other programs
For example, the command
man 3 printf
returns a description of how to make a printf call (as well as fprintf, sprintf, snprintf, vprintf, vfprintf, vsprintf, & vsnprintf). Note that I had to use a "3" on the command, otherwise it pulls the definition from the first manual (1) that contains printf.
man -k printf
shows you everything that contains "printf" in the command itself or the one-line description. The number in parenthesis indicates which manual you need to reference if there is more than one with the same exact keyword.
I'm looking for a language reference. I have library references. The problem is I don't recall the details of the languages.