/* demoOfNewLine.c  P. Conrad 10/12/05 */

#include <stdio.h>

int main(void)
{
  /* this line illustrates newlines */

  printf("*\n**\n***\n****\n");

  /* this next line illustrate "string concatenation" */

  printf("this" "is" "a" "test\n" "of" "the" "C" "language\n");

  return 0;
  
}

