What's the difference between %ul and %lu C format specifiers?

随声附和 提交于 2019-12-03 02:53:57

%lu is correct, while %ul is incorrect.

A printf format specifier follows the form %[flags][width][.precision][length]specifier.

u is a specifier meaning "unsigned decimal integer".

l is a length modifier meaning "long".

The length modifier should go before the conversion specifier, which means %lu is correct.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!