I installed manual doc for linux programmer on Ubuntu using Synaptic for French documentation.
But when I run man printf
to see the documentation of printf()
in C library stdio.h
, I dont get this. I get this:
PRINTF(1) Commandes PRINTF(1)
NOM
Printf - Formater et afficher des données
SYNOPSIS
printf FORMAT [PARAMÈTRE] ...
printf OPTION
But I obtain the correct output for scanf
as I want in french.
An ideas?
man 3 printf
- see What is the difference betweenman
andman (#)
? – steeldriver Aug 18 '17 at 12:53printf
in particular is a command as well as a C function surprises a lot of newcomers to Unix-like operating systems. – Eliah Kagan Aug 18 '17 at 13:00printf
command. The manual of the C functionprintf
is in section 3 (as explained in the duplicate) so you needman 3 printf
. – terdon Aug 18 '17 at 13:17