int a=2,b=3; printf("a=%%d,b=%%d\n",a,b); 的输出结果

如题所述

%%本身就是转义字符
代表%
于是 不会输出a b值
而是输出
a=%d,b=%d
温馨提示:答案为网友推荐,仅供参考
相似回答