a1917dcf3bbb6640e6daf4fbd12c31f3551fc732
[mirrors/Programs.git] / c / bpole / bity.c
1 #include <stdio.h>
2
3 int main() {
4 char c, d, i;
5 while(1) {
6 c = getchar();
7 for(i=0;i<8;i++) {
8 d = c && '\x01';
9 printf("%d ", d);
10 c = c << 1;
11 }
12 }
13 }
This page took 0.36783 seconds and 5 git commands to generate.