Does linux provide any tools to provide the information like man which will give me the details about the c keywords? For. e.g. man auto
Asked
Active
Viewed 122 times
4
-
2Nope. You can use: http://en.cppreference.com/w/c/keyword or other similar resources. Any textbook will give you the same info. – P.P Jan 09 '17 at 10:21
-
Ok, thanks for confirmation P.P. – Forever Learner Jan 09 '17 at 10:27
-
2Tongue-in-cheek answer: `wget` – Erich Kitzmueller Jan 09 '17 at 10:54
-
2http://stackoverflow.com/documentation/c/topics – alk Jan 09 '17 at 10:57
1 Answers
4
You cannot do it directly. As P.P. pointed out in the comments you can check out the doc on the cppreference website.
However you can install cpp man
on your machine, which will allow you to consult these reference pages as a man page offline on your computer.
It is quite convenient especially if you have to work without a network connexion for a while (e.g. in the plane or train).

Louen
- 3,617
- 1
- 29
- 49