Quantcast
Channel: what is the meaning of == sign? - Stack Overflow
Viewing all articles
Browse latest Browse all 9

what is the meaning of == sign?

$
0
0

I am trying to figure out what == sign means in this program?

int main(){    int x = 2, y = 6, z = 6;            x = y == z;    printf("%d", x);}

Viewing all articles
Browse latest Browse all 9

Trending Articles