printf小结

最初用的博客:https://blog.csdn.net/qq_34310798

中期博客:https://me.csdn.net/zxc13936130136

下午健身前lxt大佬哥问了我一个关于printf输出的问题,恰巧以前遇见过,写一个总结。

首先看一个这样一个例子

1 #include<cstdio>
2 int i;
3 int main()
4 {
5     printf("%d %d", i, i ++);
6 }

Output:

1 0

猜你喜欢

转载自www.cnblogs.com/gerjcs/p/10497890.html