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);}
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);}