What do you mean by library?Example:
p.s. to answer you question either use the file manager plugin or create an empty project and add all library files in this project
#include <iostream>
#include <string>
using namespace std ;
int main()
{
cout << "Please enter your name:";
std::string name;
std::cin >> name ;
string greeting = "Hello world, my name is " + name + "!" ;
std::cout << greeting << std::endl ;
const string spaces(greeting.size(),' ');
const string out_ = '*' + spaces + '*';
std::cout << out_ << std::endl;
return 0;
}
i don't know any offline documentation of c++. And c::B also does not provide such a feature (at least what i know. there is a help plugin, but i really don't know what it does)
If you use a external library you can try the "right click->got to deceleration". If the library implements a doxygen documentation you can read it in the header. Also there should pop up reference window on code completion (but the library has to provide it. The std does not)
If you need a cpp reference you can look at this two sites:
http://www.cplusplus.com/reference/
http://en.cppreference.com/w/
greetings
There is an open source offline documentation browser called Zeal:
https://zealdocs.org/ (https://zealdocs.org/)
It can be configured to work with CB quite easily. I've made a post in their Github issue tracker how to do that, search for my nick in their issue tracker to find how. It works by keywords though, not right mouse clicks or other fancy stuff. I improved CB's help plugin to also work with the mouse and/or give me a list of 'docsets' to search so it's much more usable for me though.
That's the link, sorry for not providing this myself since I don't have much spare time recently.