标签: c
ram@ram:~/Desktop$ cc sample.c sample.c: In function ‘main’: sample.c:7: warning: format ‘%o’ expects type ‘unsigned int’, but argument 2 has type ‘long int’
答案 0 :(得分:7)
因为它们被指定为采用unsigned int。
unsigned int
(不,真的。)