[ create a new paste ] login | about

Link: http://codepad.org/UxJLCmLF    [ raw code | output | fork ]

ritaban - C, pasted on Jun 1:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "stdio.h"
int main (void) {
    int a=10, b=0, c=10;
    char* bits ="DJJGKHG HBMBEBIBFBF HBMBQDK HBMBTDH HBMBEBIBFBF HBNGKHG";
    a = bits[b];
    while (a != 0) {
        a = bits[b];
        b++;
        while (a > 64) {
            a--;
            if (++c == 67) {
                c = 10;
                putchar(c);
            } else {
                putchar(33 ^ (b & 0x01));
            }
        }
    }
    return 0;
}


Output:
1
2
3
4
5
6
    !!!!!!!!!!          !!!!!!!           !!!!!!!!      
        !!             !!     !!         !!      !!     
        !!             !!                 !!!!          
        !!             !!                    !!!!       
        !!             !!     !!         !!      !!     
        !!              !!!!!!!           !!!!!!!!      


Create a new paste based on this one


Comments: