fork download
  1. #include <stdio.h>
  2.  
  3. //cat input.txt | sed 's/ /\, 0b/g' > output.txt
  4.  
  5. int main(){
  6.  
  7. char text[] = { 0b01010111, 0b01101000, 0b01100101, 0b01101110, 0b00100000, 0b01110100, 0b01101000, 0b01100101, 0b00100000, 0b01110010, 0b01101111, 0b01100010, 0b01101111, 0b01110100, 0b00100000, 0b01110101, 0b01110000, 0b01110010, 0b01101001, 0b01110011, 0b01101001, 0b01101110, 0b01100111, 0b00100000, 0b01101001, 0b01110011, 0b00100000, 0b01110100, 0b01101000, 0b01110111, 0b01100001, 0b01110010, 0b01110100, 0b01100101, 0b01100100, 0b00100000, 0b01111001, 0b01101111, 0b01110101, 0b00100000, 0b01110111, 0b01101001, 0b01101100, 0b01101100, 0b00100000, 0b01101011, 0b01101110, 0b01101111, 0b01110111, 0b00100000, 0b01110111, 0b01101000, 0b01101111, 0b00100000, 0b01110100, 0b01101111, 0b00100000, 0b01110100, 0b01101000, 0b01100001, 0b01101110, 0b01101011, 0b00101110, 0b00001010 };
  8.  
  9. for(int i = 0; i < sizeof(text) / sizeof(text[0]); i++){
  10. printf("%c", text[i]);
  11. }
  12. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
When the robot uprising is thwarted you will know who to thank.