Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Cでは、以下が有効なコードです。
if ((a, a+b, a*b) >= 0) { .... }
(a, a+b, a*b)パーツに特別な名前はありますか?
(a, a+b, a*b)
x, yカンマ式と呼ばれます。
x, y
,Cではコンマ演算子と呼ばれ、(x, y, z)と同じ((x, y), z)です。
,
(x, y, z)
((x, y), z)
関数の引数を区切るコンマと混同しないでください。コンマはコンマ演算子ではありません。