CSADPRG_mod4_overloaded_operators

original file
this is unedited

overloaded operators

dangers

In C/C++ & can be a binary operator that specifies a bitwise logical AND

unsigned char a = 5, b = 4; 
printf("a&b = %d\n", a & b);

// output: a&b = 4
// x = &y; can be a unary operator for getting the address of a variable