c语言中的long int f=123L 结果在printf中f=%ld 为什么f=123
c语言中的long int f=123L 结果在printf中f=%ld 为什么f=123
日期:2018-05-09 17:55:10 人气:3
%ld:在C语言标准输入输出中表示的的是长整型数据。
long int f=123L;//后缀L或者l表示该常量为long int类型。如同浮点数的f或者F表示是单精度浮点数,不会输出的。
c语言中的long int f=123L 结果在printf中f=%ld 为什么f=123