@Videogamer555(View Post) Technically, you COULD still use "and" instead of "&&". (I wouldn't recommend it, since it's && everywhere you look) You just have to add #include <iso646.h> For instance, this compiles perfectly fine on my computer: #include <stdio.h> #include <iso646.h>
int main() { int a = 0, b = 0; if (a == 0 and b == 0) printf("See, it works!"); return 0; }