Files
42_INT_03_ft_printf/exemple.txt
2020-03-10 15:07:27 +01:00

31 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
("%+d", 12) : '+12' [3]
HO HO.. : '12' [2]
("%+d", -12) : '-12' [3]
JACKPOT : '-12' [3]
("%+i", 12) : '+12' [3]
HO HO.. : '12' [2]
("%+i", -12) : '-12' [3]
JACKPOT : '-12' [3]
("%+05i", -12) : '-0012' [5]
JACKPOT : '-0012' [5]
("%05i", -12) : '-0012' [5]
JACKPOT : '-0012' [5]
("%07.5i", -12) : ' -00012' [7]
JACKPOT : ' -00012' [7]
----------------------------------------------------------------
% flags width .precision length specifier
% 0-#' + * 0..9 .* 0..9 hhhlllLjtz diuxXcsp%efgnEFGaACSo
% 0- * 0..9 .* 0..9 diuxXcsp%
% #' + hhhlll efgn
----------------------------------------------------------------
2 ERRORS