added some tools from ronnie sahlberg
[tridge/junkcode.git] / shift.c
1 #include <stdio.h>
2
3 int main(void)
4 {
5         double x = 4;
6         x = x & 2;
7         printf("x=%g\n", x);
8         return 0;
9 }