在C语言中printf("a=%%d,b=%%d\n",a,b);里的%%d是什么意思?

如题所述

这是程序输出结果
a=%d,b=%d
%%是输出%号
如果要输出整数a,b的值,应改为printf("a=%d,b=%d\n",a,b);
温馨提示:答案为网友推荐,仅供参考
相似回答