fork(1) download
  1. #include <stdio.h>
  2.  
  3. //cat input.txt | sed 's/ /\, 0b/g' > output.txt
  4.  
  5. int main(){
  6.  
  7. char text[] = { 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110001, 0b00100000, 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110000, 0b00100000, 0b00101111, 0b00100000, 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110001, 0b00100000, 0b00110000, 0b00110000, 0b00110001, 0b00110001, 0b00110000, 0b00110000, 0b00110000, 0b00110000, 0b00100000, 0b01110111, 0b01101111, 0b01110101, 0b01101100, 0b01100100, 0b00100000, 0b01100100, 0b01101111, 0b00100000, 0b01100001, 0b01100111, 0b01100001, 0b01101001, 0b01101110 };
  8.  
  9. for(int i = 0; i < sizeof(text) / sizeof(text[0]); i++){
  10. printf("%c", text[i]);
  11. }
  12. printf("\n");
  13. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
00110001 00110000 / 00110001 00110000 would do again