lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tue, Jul 21, 2015 at 11:33 PM, Dirk Laurie <dirk.laurie@gmail.com> wrote:
> BTW does anybody know if C makes any distinction between
> %d and %i? "man 3 printf" in Linux does not show any.

Posix and C++ also ascribe %d and %i the same behavior.

http://pubs.opengroup.org/onlinepubs/9699919799/functions/printf.html

http://www.cplusplus.com/reference/cstdio/printf/

-Parke