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

22 lines
876 B
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]
("%+05d", 12) : '+0012' [5]
HO HO.. : '00012' [5]
("%+05d", -12) : '-0012' [5]
JACKPOT : '-0012' [5]
----------------------------------------------------------------
% flags width .precision length specifier
% 0-#' + * 0..9 .* 0..9 hhhlllLjtz diuxXcsp%efgnEFGaACSo
% 0- * 0..9 .* 0..9 diuxXcsp%
% #' + hhhlll efgn
----------------------------------------------------------------
2 ERRORS