OLC CHALLENGE #40 - Golf An Octave
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GolfAnOctave/main.cpp

3 lines
134 B

#include <cstdio>
#define C(v,c) (i%44==v)?c
int i;char o[439];int main(){while(i<439)o[i++]=C(43,'\n'):C(42,'|'):' ';printf("%s",o);}