我想在C中打印%d
,但它显示了一些数字。
答案 0 :(得分:9)
printf("%%d")
,或仅fputs("%d", stdout)
。
答案 1 :(得分:1)
要获得%
,您需要%%
。
printf("%%d");
打印
%d
printf
手册页说:
conversion
specifier
% A '%' is written. No argument is converted. The complete con‐
version specification is '%%'.