longstrg.c 332 B

12345678910111213
  1. /* longstrg.c –– printing long strings */
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. printf("Here's one way to print a ");
  6. printf("long string.\n");
  7. printf("Here's another way to print a \
  8. long string.\n");
  9. printf("Here's the newest way to print a "
  10. "long string.\n"); /* ANSI C */
  11. return 0;
  12. }