#include main() { int i = 255; printf("%d\n", i); i &= ~077; printf("%d\n", i); exit(0); }