1
0
Fork 0
psychic-wallhack/what.c

16 lines
216 B
C

#include <stdio.h>
int main()
{
int butt = 100;
printf("%d ", butt);
fflush(stdout);
butt &= 0;
printf("%d ", butt);
fflush(stdout);
butt |= 100;
printf("%d ", butt);
fflush(stdout);
return 0;
}