开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
LINUX & WINDOWS
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
No
问题(Question):
请问,当我写 count = count++; 时,count 本身值不会改变,这是为什么呢?谢谢
喂入的资料(Input):
NO
预期的正确结果(Expected Output):
1
错误结果(Wrong Output):
0
程式码(Code):(请善用置底文网页, 记得排版)
#includ <stdio.h>
int main()
{
int count = 0;
count = count++;
printf("%d", count); // it will print 0??
}
补充说明(Supplement):