Added some small boring scripts and programs writen in few last years
[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.24022 seconds and 4 git commands to generate.