fork download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. int main()
  4. {
  5. char *ilym[12] = { "01001001", "00100000", "01001100",
  6. "01101111", "01110110", "01100101",
  7. "00100000", "01011001", "01101111",
  8. "01110101", "00100000", "01001101" };
  9.  
  10. int i;
  11. for (i = 0; i < 12; i++)
  12. {
  13. char c = strtol(ilym[i], (char **)NULL, 2);
  14. printf("%c", c);
  15. }
  16. printf("\n");
  17. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
I Love You M