skip to main
|
skip to sidebar
2010年6月25日星期五
printf function sequence
In printf function, the sequence of calculating is from right to left.
Example:
#include
void main()
{
int a=5,b=2;
printf("%d %d\n",b=a+1,a=a+1);
}
output =>> 7 6
NOT 6 6
a=a+1 // 6
b=a+1// 7
then printf
没有评论:
发表评论
较新的博文
较早的博文
主页
订阅:
博文评论 (Atom)
xi zhang's blog
关注者
博客归档
▼
2010
(12)
►
七月
(1)
▼
六月
(6)
printf function sequence
parameters of main()
const
Bitwise Operators
void pointer
Point and Array
►
五月
(5)
没有评论:
发表评论