2008-10-04から1日間の記事一覧

「式」というマジック

後置単項演算子「a++」のようなやつの評価は 「式全体の評価が終わるまで pending」ってのは常識ですが、 #include <stdio.h> void test_func(const int a, const int b) { printf("%d %d\n", a, b); return; } int main(int argc, char** argv) { int x = 0; test_fu</stdio.h>…