格式化字符串可以看做这样因为本身printf的输入第一个参数就是string ,所以这里的format就是直接传参了。a=11,b=10;a+=b;所以a=21,b=10。就是输出这个意思:printf("%s,a=%d,b=%d\n", "a+=b", a, b);