Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Manual pages for C programming on Ubuntu

Tags:

c

ubuntu

manpage

I want a manual for C programming language to install it on Ubuntu 11.10 , I want to execute man function and be able to view the documentation as I do on system calls and functions.

Which package should I install ?

like image 369
حاتم الرخاوي Avatar asked Oct 26 '11 10:10

حاتم الرخاوي


People also ask

Can I use Ubuntu for C programming?

To use the C Programming Language on Ubuntu 22.04, first, update the system repositories and run the “$ sudo apt install build-essential” command. The “build-essential” package will install all of the required libraries and compilers related to the C Programming language.

What are the manual pages in Linux?

A man page (short for manual page) is a form of software documentation usually found on a Unix or Unix-like operating system. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.

How do I access man pages in Linux?

Using man is as simple as opening your Terminal emulator, or logging into your server via SSH. Once there, you can simply type man followed by the program you want to learn about. And the entire Git documentation will display in your screen using the less pager program.

What command can be used to install the man pages?

To install man pages use the yum command or dnf command as follows on a CentOS 6/7/8/9.


1 Answers

sudo apt-get install manpages-dev manpages-posix-dev glibc-doc
like image 100
Sunny Avatar answered Oct 08 '22 00:10

Sunny