開發平台(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):