01/10/2018, 10:45

Hỏi về ý nghĩa code lần đầu thấy

#include <stdio.h>
void main()
{
    int k = (3, 4);//cái này có nghĩa là gì vậy em mới lần đầu thấy
    printf("%d
", k);
}
Tao Không Ngu. viết 13:00 ngày 01/10/2018

Hi nghia.
Cái này cũng mới thấy lần đầu GG ra ngay. Bạn nên GG trước.

en.wikipedia.org

Comma operator

In the C and C++ programming languages, the comma operator (represented by the token ,) is a binary operator that evaluates its first operand and discards the result, and then evaluates the second operand and returns this value (and type). The use of the comma token as an operator is distinct from its use in function calls and definitions, variable declarations, enum declarations, and similar constructs, where it acts as a separator. The comma operator separates expressions (which have value) i...

nghia viết 12:52 ngày 01/10/2018

Cảm ơn anh nhiều lần sau em sẽ chú ý sài GG nhiều hơn!

Bài liên quan
0