docs
[mirrors/Programs.git] / c / bpole / bity.c
CommitLineData
21c4e167
H
1#include <stdio.h>
2
3int 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.275503 seconds and 4 git commands to generate.