Hi I am new to programming in Linux, I was wondering do Linux have any reference document that's similar to MSDN? Particularly, I am interested in an offline version of C++ Standard Library Reference and any library installed on my computer and I can use it to browse or look up when issuing man or info command. Also, If I want to know the implementation of a particular header file or a particular function.. what places should I look for? /include , /usr/local/include?
Use the man
utility. Most packages and programming languages have standard manual pages. For example, to find out about vfprintf
, type man vfprintf
and you will get a manual page about all the printf variants. Some distributions may not install development manual pages by default; you may need -dev
, -devel
or -doc
packages.
The header files are located in /usr/include
and /usr/local/include
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With