fork download
  1. #include <stdio.h>
  2.  
  3. const char *ten_words_list[] = {
  4. "some",
  5. "very",
  6. "big",
  7. "list",
  8. "that"
  9. "consists",
  10. "of",
  11. "exactly",
  12. "ten",
  13. "words"
  14. };
  15.  
  16. int main(void) {
  17. for(int i = 0; i < 9; i++) {
  18. puts(ten_words_list[i]);
  19. }
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 5516KB
stdin
Standard input is empty
stdout
some
very
big
list
thatconsists
of
exactly
ten
words